The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
8 | |
8 |