Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
Would like to seek help on condidtional formatting.
I have a table with two fields, expiry date and planned date(the date to perform the renewal).
Would like to have a conditional formatting of,
if planned date is greater than today and expiry date is greater than today, mark the cell red
Thanks
Solved! Go to Solution.
Hi @JJbc23
Based on your needs, I have created the following table.
You can use the following dax to decide if you want to display it in red.
Highlight = IF(AND('Table'[plan date] > TODAY(), 'Table'[end date] > TODAY()), "True", "False")
Then apply the appropriate rule to this column in the formatting
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JJbc23
Based on your needs, I have created the following table.
You can use the following dax to decide if you want to display it in red.
Highlight = IF(AND('Table'[plan date] > TODAY(), 'Table'[end date] > TODAY()), "True", "False")
Then apply the appropriate rule to this column in the formatting
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |