Join 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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, I am needing to show total daily charge. I have manually calculated to show the results I am needing - on Jan 1, our total rental items billed = $400 but on Jan 4, it was only $100. What is the best way to calculate daily total? Appreciate any help. Thank you in advance.
Solved! Go to Solution.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
total charge measure: =
VAR _t =
ADDCOLUMNS ( data, "@rentdays", DATEDIFF ( data[start], data[stop], DAY ) + 1 )
VAR _daiylycharge =
ADDCOLUMNS ( _t, "@dailycharge", DIVIDE ( data[total charge], [@rentdays] ) )
VAR _dailytable =
ADDCOLUMNS (
'calendar',
"@dailycharge",
SUMX (
FILTER (
_daiylycharge,
data[start] <= EARLIER ( 'calendar'[Date] )
&& data[stop] >= EARLIER ( 'calendar'[Date] )
),
[@dailycharge]
)
)
RETURN
SUMX ( _dailytable, [@dailycharge] )
hi @wotkara
I have used below tables
Inv
Chg
Calendar table
Measure
-----------------
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
total charge measure: =
VAR _t =
ADDCOLUMNS ( data, "@rentdays", DATEDIFF ( data[start], data[stop], DAY ) + 1 )
VAR _daiylycharge =
ADDCOLUMNS ( _t, "@dailycharge", DIVIDE ( data[total charge], [@rentdays] ) )
VAR _dailytable =
ADDCOLUMNS (
'calendar',
"@dailycharge",
SUMX (
FILTER (
_daiylycharge,
data[start] <= EARLIER ( 'calendar'[Date] )
&& data[stop] >= EARLIER ( 'calendar'[Date] )
),
[@dailycharge]
)
)
RETURN
SUMX ( _dailytable, [@dailycharge] )
Thank you so much! This worked. I greatly appreciate your help 🙂
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
13 | |
7 | |
5 |