Forum Discussion
Daily rate calculation filtered by customer
Hi,
I have a rental business and we are tracking the daily earnings based on on/off hire dates. I have this working OK having created a calendar table and the following column statement:
You are going to need to convert that to a measure.
Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
3 Replies
- Greg_Deckler
Community Champion
You are going to need to convert that to a measure.
Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
- waynewoodhead
Helper I
Hi,
Could you explain a little further. The calendar tabke does not have the account names in it, they are in another table.
How would that measure statement look - thanks
- v-yingjl
Community Support
Hi waynewoodhead ,
I'm not certain what's the structure of dataset look like but maybe you can try to create a measure not a column like this and set a customer and date slicer to filter:
Earnings = CALCULATE ( SUM ( Contltems[DailyRate] ), FILTER ( 'Contltems', SELECTEDVALUE ( 'Calendar'[Date] ) >= 'Contltems'[HIREDATE] && SELECTEDVALUE ( Contltems[EndDate] ) <= 'Contltems'[EndDate] ), ALL ( 'Contltems' ) )If not help, could you please share a dummy pbix file as a sample for further discussion? Sample data and expected output would help tremendously.
Please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490Best Regards,
Yingjie LiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.