Forum Discussion
Spen
4 years agoRegular Visitor
Monthly calculation given Start Date, Duration, Total Value and Customer Name
Hi All, Can anyone help. I have a [Start Date], [Duration Months], [Total Value] and [Customer Name] What I want to do is show for every month the total value for each customer. ie The ...
- 4 years ago
Spen , Create a new calculated table and use that
Addcolumns(filter(generate(Table, generateseries(0,20,1)), [Value] < [Duration]), "_month", eomonth([Start Date], [Value] -1)+1)
amitchandak
Super User
4 years agoSpen , Create a new calculated table and use that
Addcolumns(filter(generate(Table, generateseries(0,20,1)), [Value] < [Duration]), "_month", eomonth([Start Date], [Value] -1)+1)
- Spen4 years agoRegular Visitor
Amazing. Thank You 💪