Forum Discussion
JeffPeterson1
3 years agoQrew Captain
You can just create a formula text field for each of these and use if statements to handle it like this:
If([Create or Delete a Product]=1, "Product Created or Deleted", "Product Not Created or Deleted")
Then show that field in your report instead.
Alternately:
You can use report formulas to do this directly in the report.
In the report builder, under the 'Report Formulas' Section, create a new report formula and enter the formula above:
That formula will then appear as a column you can add to the report.
Note that these values would only be visible in that report and not usable anywhere else (if that matters for your purpose).
------------------------------
Jeff Peterson
------------------------------
- MrunaliKadam3 years agoQrew Traineehank you very much Jeff for the quick response and suggesting 2 solutions! 1st solution will work better in my case.
------------------------------
Mrunali Kadam
------------------------------- MrunaliKadam3 years agoQrew TraineeHi Jeff,
I'm trying to combine both checkboxes selection in one new column on the report called change type. Because we've such 5 checkboxes and instead of going through each column, it's easy to see only one column which shows everything.
I'm creating formula but it's not working when both checkboxes are selected. Please advise.
If([Create or Delete a Product] = true, "Create or Delete a Product",
[Provision a Data Store] = true, "Provision a Data Store",
[Create or Delete a Product] and [Provision a Data Store]= true, "Create or Delete a Product, Provision a Data Store",
" ")
------------------------------
Mrunali Kadam
------------------------------- JeffPeterson13 years agoQrew CaptainYour line with AND need the =true for both conditions.
If(
[Create or Delete a Product] = true, "Create or Delete a Product",
[Provision a Data Store] = true, "Provision a Data Store",
[Create or Delete a Product]= true and [Provision a Data Store]= true, "Create or Delete a Product, Provision a Data Store",
" ")
------------------------------
Jeff Peterson
------------------------------