Forum Discussion
Tycobb479
4 years agoNew Member
Historical line chart
Hello dear collaborators! I'd like to kindly ask for your help regarding the following: I have the below information and I would like to calculate the subtotals for A and B and then divide [(subtota...
- 4 years ago
You can achieve this by rolling up the date to year month format, then creating a measure to perform the calculation:
- 4 years ago
Hi,
You could create the Month-Num column in your table as below :
Month-Num = format(Sheet81[Date], "MM")And alsoValue = DIVIDE( sum(Sheet81[A]), sum(Sheet81[B] ))then use the created column in your visuals :
MahyarTF
Memorable Member
4 years agoHi,
You could create the Month-Num column in your table as below :
Month-Num = format(Sheet81[Date], "MM")
And also
Value = DIVIDE( sum(Sheet81[A]), sum(Sheet81[B] ))
then use the created column in your visuals :
Tycobb479
4 years agoNew Member
Thank you for your alternative solution, MahyarTF! Much appreciatted!