Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi
How to create DAX IF for conditional formating with 2 categories
I tried this but give error
KPI_Points = IF((SUM(Sales[Points] ) && Sales[WO_Type] ) < (SUM(KPI[Points]) && KPI[[WO_Type] ) ,"Red","Black")
Thank
@Anonymous , if conditions are wring they need to be like the example
KPI_Points = IF(SUM(Sales[Points] ) <100 && KPI[[WO_Type] = "A" ,"Red","Black")
Change as per need.