Forum Discussion
calculate from second row
Hello everyone,
I need to calculate a formula taking into account data from the second row.
I show you an example in excel:
I have a filter in Power BI by date, which will select the numbers. Then I must apply that formula from the second row.
This means: data must be selected from the next day the filter was selected. In the example above, the user would select in the date slicer from 7 to 14 of May, so data must be calculated from 8 to 14th of May.
I calculated an index column in Power Query. And a "first row" measure which selects the index for the first row:
I loaded your excel data into a table called Second, and made a table visual and this measure, and put it on a card.
StartWithSecond = VAR filteredtable = FILTER('Second', 'Second'[Date]>min('Second'[Date]))return PRODUCTX(filteredtable, 1+'Second'[Value])-1If this solution works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
2 Replies
- mahoneypat
Microsoft Employee
I loaded your excel data into a table called Second, and made a table visual and this measure, and put it on a card.
StartWithSecond = VAR filteredtable = FILTER('Second', 'Second'[Date]>min('Second'[Date]))return PRODUCTX(filteredtable, 1+'Second'[Value])-1If this solution works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat- AnonymousNot applicable
Thank you so much mahoneypat !!
I was really complicating myself with collumns and so on... It works wonderfully!! Thanks again!