Forum Discussion
sdhn
4 years agoResponsive Resident
Condition & Counts
Hi All, Here are the two columns from my source table "Table A" 1) If Column F = Not Assessed or Blank = Not Assessed If Column F = Yes or No = Assessed 2) I need total co...
- 4 years ago
Download this file:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
VahidDM
4 years agoSuper User
Try this:
Column =
SWITCH(
TRUE(),
[Column F] = "NOT ASSESSED"
|| [Column F] = BLANK(), "NOT ASSESSED",
[Column F] = "YES"
|| [Column F] = "NO", "ASSESSED"
)
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
sdhn
4 years agoResponsive Resident
I need to dispaly in the graph.
Table is exsited. Thanks
- VahidDM4 years agoSuper User
Download this file:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/