Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to write a DAX for my conditional formatting, what is wrong with this .
Actual Spent Format = IF('Project Details'[state] = "closed" ) && CALCULATE(SUM('Project Details'[Custom_ActualSpentAmount]))=0
RETURN
"red"
Thanks
Solved! Go to Solution.
Hi,
I am not sure how your desired outcome looks like, but please try the below whether it suits your requirement.
Actual Spent Format =
IF (
SELECTEDVALUE ( 'Project Details'[state] ) = "closed"
&& SUM ( 'Project Details'[Custom_ActualSpentAmount] ) = 0,
"red"
)
Hi @faheem_Latif_BI ,
Is your problem solved, if it is solved, you can mark the correct answer, if not, can provide detailed information, we can help you better.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I am not sure how your desired outcome looks like, but please try the below whether it suits your requirement.
Actual Spent Format =
IF (
SELECTEDVALUE ( 'Project Details'[state] ) = "closed"
&& SUM ( 'Project Details'[Custom_ActualSpentAmount] ) = 0,
"red"
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |