Forum Discussion
NEED HELP
- 3 years ago
Hi, Anonymous
You can try the following methods.
Sample data:Column:
Difference = DATEDIFF([Invoice date],TODAY(),DAY)Measure = CALCULATE(SUM('Table'[Count]),FILTER(ALL('Table'),[Difference]>7)) +CALCULATE(SUM('Table'[Count]),FILTER(ALL('Table'),[Invoice date]=BLANK()))Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
It's always nice if you can supply a sample data and expected output. The more detailed the information the better. With what you've given, the best anyone can do is nudge you in the right direction.
Your expression would be:
CALCULATE([YOUR_MEASURE], YOUR_DATE_FIELD > TODAY() - 7 || YOUR_INVOICE_FIELD = BLANK() )Hi hnguy,
below is the screen shot of data.i want to calculate the current date - invoice date >7 or invoice date is null so that i know how many invoices are delayed
- v-zhangti3 years ago
Community Support
Hi, Anonymous
You can try the following methods.
Sample data:Column:
Difference = DATEDIFF([Invoice date],TODAY(),DAY)Measure = CALCULATE(SUM('Table'[Count]),FILTER(ALL('Table'),[Difference]>7)) +CALCULATE(SUM('Table'[Count]),FILTER(ALL('Table'),[Invoice date]=BLANK()))Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.