Forum Discussion
SurferJames
2 years agoFrequent Visitor
Conditional Formatting BI
I am fairly new to BI. I have a table that has the following contents: - Orginated time (This is when the call hit) - Orginator (Customer number) - Customer - Age - Any Disability (Flagge...
JoeBarry
2 years agoSolution Sage
Hi SurferJames
I'm trying to undestand the 7 days part, is it the last 7 days or is it any 7 day period in a month?
- SurferJames2 years agoFrequent Visitor
I have created two measures like this:
1.
Last 30 Days = VAR startdate = TODAY() - 30returnCALCULATE(COUNT('Contact Log'[Originator]),'Contact Log'[Originated Time]>= startdate)2.Last 7 Days = VAR startdate = TODAY() - 7returnCALCULATE(COUNT('Contact Log'[Originator]),'Contact Log'[Originated Time]>= startdate)Now I want to conditional format it but I can't seem to use two measures, how would I combine them with the rules I want in the original message?