Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello,
So I've got a penetration rate that changes only when new houses are added at specific dates.
So for example at 1st January I have 100.000 houses, but 10.000 houses are added on the 1st of March.
Is there a way the model keeps the 100.000 for January and February and only adds in March.
Ill leave below the set for the two tables:
Table 1: Nr of total houses for each date when Houses are added
Table 2: Multiple dates for different data and for which I need to summarize the total number of houses which depends on date from table 1.
I dont know if i use the right words, but i am looking forward to hear from you.
Solved! Go to Solution.
@Anonymous , Do you need running total or cumulative
example measure
Cumm Sales = CALCULATE(SUM(Table[houses ]),filter(allselected(Table),Table[Date] <=max(Table[Date])))
with date tbale
Cumm Sales = CALCULATE(SUM(Table[houses ]),filter(allselected(Date),Date[Date] <=max(Date[Date])))
Hey,
Thanks.
I need the cumulative. I am not sure though your solution answers the question.
So I would say what may be missing is the following:
On table 2 a column must be added for summing the houses from table 1 (on table 1 houses are added for each new date). Table 2 have several days for a month, on which the new column will be added that match the houses for the specific dates.
I hope I am clear on what I am saying.
But imagine a CalendarTable, and i'd need those houses to be added as a column according to the date on calendar table.
@Anonymous , Do you need running total or cumulative
example measure
Cumm Sales = CALCULATE(SUM(Table[houses ]),filter(allselected(Table),Table[Date] <=max(Table[Date])))
with date tbale
Cumm Sales = CALCULATE(SUM(Table[houses ]),filter(allselected(Date),Date[Date] <=max(Date[Date])))
My friend, I made just some changes and this has worked for me. thanks.
Hey,
Thanks.
I need the cumulative. I am not sure though your solution answers the question.
So I would say what may be missing is the following:
On table 2 a column must be added for summing the houses from table 1 (on table 1 houses are added for each new date). Table 2 have several days for a month, on which the new column will be added that match the houses for the specific dates.
I hope I am clear on what I am saying.
But imagine a CalendarTable, and i'd need those houses to be added as a column according to the date on calendar table.
User | Count |
---|---|
101 | |
68 | |
58 | |
47 | |
46 |