Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi
I have a revenue which has two dates: dateExib and dateFact I want to sum(revenue) only if dateFact is different from dateExib. Do you know how can I do it?
Solved! Go to Solution.
Hi @Anonymous ,
Assume we have a table like below:
Then we can use the following DAX query:
revenuesum = CALCULATE(SUM(Table1[revenue]),FILTER(ALL(Table1),Table1[dateExib] <> Table1[dateFact]))
Best Regards,
Teige
The logic for "only if dateFact is different from dateExib" is:
IF('Table'[dateFact] <> 'Table'[dateExib], "Do something if true", "Do something if false")But the second and third arguements depend on where you are putting the logic. Is this going to be a column in a table? Or will it be a measure?
Another way to ask this question is when you say "sum(revenue)" what revenue(s) do you mean?
Hi, try to create e measure
revenue = calculate(sum(revenue);dateFact <> dateExib)
Regards.
That sintaxe is not possible..-it was the first thing that I did by the way. Anyway I already solve that.
Hi @Anonymous ,
Assume we have a table like below:
Then we can use the following DAX query:
revenuesum = CALCULATE(SUM(Table1[revenue]),FILTER(ALL(Table1),Table1[dateExib] <> Table1[dateFact]))
Best Regards,
Teige
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 76 | |
| 37 | |
| 31 | |
| 29 | |
| 26 |