Forum Discussion
sandipgumtya365
Nov 25, 2020Brass Contributor
Need help with Tables
Hello EXCELers, Need some help with a formula. I was preparing a loan amortization table where I wanted to get the yearly interest paid. I have used the Sumproduct function to get the yearly data. T...
- Nov 27, 2020
Creating PivotTable add data to data model and instead of direct aggregation (sum) use measures like
Paid Interest:= VAR total=SUM(Home_Loan[Interest Paid]) VAR Result=IF(total=0,BLANK(),total) RETURN ResultResult will be like
As a source I took the table to the left. As a comment, please don't add totals manually, Table support total row you may switch on/off and use the same formulas. Otherwise that could be side effect.
SergeiBaklan
Nov 27, 2020Diamond Contributor
By the way, another variant of formula here
could be
=SUM(INDEX(Home_Loan[Interest Paid],SEQUENCE(12,1,(J16-1)*12)+1))
sandipgumtya365
Dec 01, 2020Brass Contributor
SergeiBaklan Thanks a lot. I think my issue is resolved now. Than you. btw, I want to learn DAX, What is the best source or channel to go about. Pl suggest.
Thanks
Sandip.
- SergeiBaklanDec 02, 2020Diamond Contributor
sandipgumtya365 , you are welcome, glad to help