Forum Discussion
Sonalin
8 years agoRegular Visitor
Filter a column using another column
I am tryin to calculate quarter over quarter groth in power BI. My client used diffrent fisacl calender I Have Quarter ID and Bookings column in my table I need to get value of last year same q...
- 8 years ago
You may add a calculated column as follows.
Column = LOOKUPVALUE ( Table1[Bookings Net], Table1[Fiscal Quarter ID], ( LEFT ( Table1[Fiscal Quarter ID], 4 ) - 1 ) & RIGHT ( Table1[Fiscal Quarter ID], 2 ) )
v-chuncz-msft
Community Support
8 years ago
You may add a calculated column as follows.
Column =
LOOKUPVALUE (
Table1[Bookings Net],
Table1[Fiscal Quarter ID], ( LEFT ( Table1[Fiscal Quarter ID], 4 ) - 1 )
& RIGHT ( Table1[Fiscal Quarter ID], 2 )
)