Forum Discussion
JeffPeterson1
3 years agoQrew Captain
Oops! My fault. The reason is because it evaluates the conditions from the top down and will show the output from the first true argument. Try this code instead:
If(
[Create or Delete a Product]= true and [Provision a Data Store]= true, "Create or Delete a Product, Provision a Data Store",
[Create or Delete a Product] = true and [Provision a Data Store]=false, "Create or Delete a Product",
[Provision a Data Store] = true and [Create or Delete a Product] = false, "Provision a Data Store",
" ")
------------------------------
Jeff Peterson
------------------------------
MrunaliKadam
3 years agoQrew Trainee
Great! It worked! Thanks Jeff and a nice weekend.
------------------------------
Mrunali Kadam
------------------------------
------------------------------
Mrunali Kadam
------------------------------
- MarkShnier__You3 years ago
Qrew Legend
@Mrunali Kadam
Try this as a formula Multi-Select field type
Split(List(";",
If([Create or Delete a Product], "Create or Delete a Product"),
If([Provision a Data Store], "Provision a Data Store")))
You will be able to use this field as a Dynamic Filter.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------ - MrunaliKadam3 years agoQrew TraineeIs there a way we can show text similar to the format in the below screenshot on the report ?
Right now it just shows next to each other and unable to filter out the specific column for a specific value.
------------------------------
Mrunali Kadam
------------------------------ - MrunaliKadam3 years agoQrew TraineeThank you Mark!
------------------------------
Mrunali Kadam
------------------------------