Forum Discussion
creating a summury table from existing PBD table
- Anonymous9 years ago
Hi gpiero,
Based on your description, you want to get the weekly summary of your records, right?
You can refer to below formula to get weekly summary data(weeknum function):
Base table:
Measures:
WeekNumber = WEEKNUM(MAX('Table'[Date]))
Weekly Summary =
var currDate=MAX('Table'[Date])
var CurrWeekNo=WEEKNUM(MAX('Table'[Date]))
return
SUMX(FILTER(ALL('Table'),AND(WEEKNUM('Table'[Date])=CurrWeekNo,YEAR([Date])=YEAR(currDate))),'Table'[Amount])Regards,
Xiaoxin Sheng
Could you be a little more specific in what is the output exxpected and some sample data to work out a solution.
Cheers
CheenuSing
- gpiero9 years agoSkilled Sharer
my goal would be fill tha table Dashboard Stock Values (1st pct) automatically each time (weekly) the table MB52 will be refreshed by data extracted from ERP each week.
The measures existing in the table MB52.... contanins the value to transfer in the Dashboard.
Then I will add a row each week and every chart, report or analisys wil be based on the Dashbord Stock Values.
Thanks
gpiero