Forum Discussion
Calculate Footfall values from opening date
- 4 years ago
Hi alexcatala ,
Please try the following formula:
Footfall (D) = VAR BoP_Date_Fixed = [BoP Date] VAR d_StoresAuto_Enriched = ADDCOLUMNS ( d_StoresAuto, "Include", MAX ( [COMP_Active] * ( [OpeningDateAniversary] <= BoP_Date_Fixed ), [NEW_Active] * ( [OpeningDateAniversary] > BoP_Date_Fixed ) ) ) VAR d_StoresAuto_Enriched_Filtered = FILTER ( d_StoresAuto_Enriched, [Include] = 1 ) VAR Result = SUMX ( d_StoresAuto_Enriched_Filtered, CALCULATE ( SUM ( 'f_DailyFootfall'[Traffic]), FILTER('d_StoresAuto','d_StoresAuto'[Date] >= 'd_StoresAuto'[OpeningDate]) ) ) RETURN IF ( Result = 0, [ND_Sign], Result )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
alexcatala , if you are looking for life to date, then the opening date has no role. As there will be no data before.
What is data and what is the issue
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hi,
The issue is I would like to start calculating the values from the opening date of the store, not before.
Is that possible?
As when we open a new store we don't only want to start calculating since the store was opened.
Here you can see the Footfall is counting(employees and maintenance) when the store wasn't opened yet.
I would like only the count/sum of the values since the opening date, not before.
- amitchandak4 years agoSuper User
alexcatala , See if one of the two ways can help
Footfall new= if(isblank[Sales D]), Blank(), [Footfall])
or
footfall new = calculate([Footfall], filter(Date, Date[Date]>= calculate(Min(Table[Date]),allexcept(Table, Table[Store]))))
Table is table of sales
- alexcatala4 years agoHelper IV
I have tried your suggestion but it didn't work
It keeps showing the value before the opening date.
footfall new = calculate([Footfall (D)], filter(d_StoresAuto,d_StoresAuto[OpeningDate]>= calculate(Min(d_StoresAuto[OpeningDate]),allexcept(d_StoresAuto,d_StoresAuto[Store]))))Any other idea that might work?I want just to take the values since the opening date.Thanks in advance- v-kkf-msft4 years agoCommunity Support
Hi alexcatala ,
Please try the following formula:
Footfall (D) = VAR BoP_Date_Fixed = [BoP Date] VAR d_StoresAuto_Enriched = ADDCOLUMNS ( d_StoresAuto, "Include", MAX ( [COMP_Active] * ( [OpeningDateAniversary] <= BoP_Date_Fixed ), [NEW_Active] * ( [OpeningDateAniversary] > BoP_Date_Fixed ) ) ) VAR d_StoresAuto_Enriched_Filtered = FILTER ( d_StoresAuto_Enriched, [Include] = 1 ) VAR Result = SUMX ( d_StoresAuto_Enriched_Filtered, CALCULATE ( SUM ( 'f_DailyFootfall'[Traffic]), FILTER('d_StoresAuto','d_StoresAuto'[Date] >= 'd_StoresAuto'[OpeningDate]) ) ) RETURN IF ( Result = 0, [ND_Sign], Result )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.