Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more





Solved! Go to Solution.
Hi @lbrown
Your formula need to modify, please see the bold character which is different from yours
Commission Measure =
VAR maxdate =
CALCULATE (
MAX ( 'Retained &Winback Call Logs'[Create Timetamp] ),
ALL ( 'Retained &Winback Call Logs' )
)
RETURN
CALCULATE (
DISTINCTCOUNT ( 'Retained &Winback Call Logs'[ESG Account Number] ),
FILTER (
'Retained &Winback Call Logs',
'Retained &Winback Call Logs'[Timestamp] = maxdate
)
)
From your formula, you use [MaxDate Measure] instead of "maxdate", please modify.
Best Regards
Maggie
Hi @lbrown
Could you show some an dataset example?
As i analyzed, the Total Commissions should show $5,713=21+22+362+5308, so what is the relationship between
Total Commissions and Correct Distinct Count?
Without knowing your dataset, i make a test to let you know how to get the total based on the max date.
Measure = var maxdate=CALCULATE(MAX([date]),ALL(Sheet6)) return CALCULATE(DISTINCTCOUNT(Sheet6[Id]),FILTER(Sheet6,[date]=maxdate))
Best Regards
Maggie
For some reason I am getting an error message around the return part of the measure shown in the screenshot.
The total commission measure is a sum of the commission payout column from the data. While the Correct Distinct Count is a sumx of the distinct commission payout column. 
Hi @lbrown
Your formula need to modify, please see the bold character which is different from yours
Commission Measure =
VAR maxdate =
CALCULATE (
MAX ( 'Retained &Winback Call Logs'[Create Timetamp] ),
ALL ( 'Retained &Winback Call Logs' )
)
RETURN
CALCULATE (
DISTINCTCOUNT ( 'Retained &Winback Call Logs'[ESG Account Number] ),
FILTER (
'Retained &Winback Call Logs',
'Retained &Winback Call Logs'[Timestamp] = maxdate
)
)
From your formula, you use [MaxDate Measure] instead of "maxdate", please modify.
Best Regards
Maggie
Can you do something like ...
DailyCommission = calculate([Commission],FILTER('Name of your Calendar Table','Calendar Table'[Date]=Today()..
You might need to make Today()-1, assuming your data feed comes through every midnight / morning...
Make sure you label your comission card to say "Last Days Comissions" to be clear...
@Anonymous
This unfortunately didn't work. This gives me a blank when I add the field to the Card Visual. 

My inclination is that today() isn't able to match up with your Create Timestamp.
I could be wrong...but I see your date logic is hooked up straight to (what looks like) your raw data file, likely with the column header of: "Create Timestamp".
If there's any chance of extra Calendar-based metric reporting that you might need to show, a lot of the tutorials suggest you use a Calendar table to power all time-based calculations (MTD, QTD, YTD, etc.)
Here's a fast one: https://www.youtube.com/watch?v=F7kc4pd6TVU
Edit:
What format is your Create Timestamp formatted to? Date/Time? etc.?
@Anonymous
The format of the Create Timestamp is Date. I also added a Date Table to use in the formula, but I'm still getting the complete total of the column when all the dates are considered. I think the Total Commissions has some effect on the formula. Right now the Total Commissions = sum([Commissions Payout]) which is considering the sum of the total commissions column without considering the max date measure.


Looks like you've already got Step 1 done.
Total Commissions $ = sum('Retained & Winback Call Logs'[Comission Payout])
Step 2 Try something like this?
Daily Commission $ = CALCULATE([Total Comissions $], DATESBETWEEN('Create Date'[Call Log Date],TODAY()-1,TODAY())
@Anonymous
For this measure I am still seeing the total commission amount as a sum of the column.
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.