The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi All
Could someone help with possibly an IF fromula please. Basically I needed to add an +0 to my formula as Team E should show 0% in that they had activity but did not meet the timely criteria.
However Team C have not have any activity and with conditional formatting (<70%) thier cell highlights green as assuming it is because of no return.
What would I need to add to my formula either to mark Team C's row as NA? and for the Conditional Formatting to not apply.
Solved! Go to Solution.
Hi @Undercoverstig ,
According to your description, here are my steps you can follow as a solution.
(1) We can create measures.
na%Timely = IF(MAX('Table'[Activity Logged]) ==BLANK(),"NA",'Table'[%Timely])
Measure = SWITCH(TRUE(),[na%Timely]="NA","WHITE",[na%Timely]+0<0.7,"GREEN")
(2)Set conditional formatting.
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Undercoverstig ,
According to your description, here are my steps you can follow as a solution.
(1) We can create measures.
na%Timely = IF(MAX('Table'[Activity Logged]) ==BLANK(),"NA",'Table'[%Timely])
Measure = SWITCH(TRUE(),[na%Timely]="NA","WHITE",[na%Timely]+0<0.7,"GREEN")
(2)Set conditional formatting.
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |