Forum Discussion
Creating a conditional field based on two different dates from two different tables.
Hi all,
Im looking to create a conditional field based on two different dates from two different tables.
If Table 1 - Stage 1 date has past then the field turns red (this is in place) however i would like to create a new column that looks at Table 1 - Stage 1 date and displays it unless Table 2 - Stage 1 date contains data. I will set a condition to show the new field as green.
Can anyone help with how this code would look like?
Any help much appreciated as always 🙂
Thanks
2 Replies
- amitchandakSuper User
eilidh3 , you can create color measure like this
Color sales = if(AVERAGE(Sales[Sales Amount])<170,"green","red") Color Year = if(FIRSTNONBLANK(Table[Year],2014) <=2016,"lightgreen",if(FIRSTNONBLANK(Table[Year],2014)>2018,"red","yellow")) Color = if(FIRSTNONBLANK(Table[Year],2014) <=2016 && AVERAGE(Sales[Sales Amount])<170 ,"lightgreen",if(FIRSTNONBLANK(Table[Year],2014)>2018,"red","yellow")) Color sales = if([Sales Today] -[sales yesterday]>0,"green","red"), based on your conditions and use it after choosing field option in color grouping
For date across two table , how to handle refer :https://community.powerbi.com/t5/Community-Blog/Decoding-Direct-Query-in-Power-BI-Part-2-Date-Difference-Across/ba-p/934397#M451
Formatting
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-numbers-in-the-column
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values - daxCommunity Support
Hi eilidh3 ,
I am not clear about your requirement, if possible could you please inform me more detailed information(such as your expected output and your sample data )? Then I will help you more correctly.
Please do mask sensitive data before uploading.
Thanks for your understanding and support.
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.