Forum Discussion
abukapsoun
2 years agoPost Patron
Formatting a matrix
Hello, Need your kind support in the following scenario I have a matrix view with the following: Rows: Customer Project Columns: Quarter Date Value: Sum in Column Date, there is...
- 2 years ago
Hi,
I tried not to alter the relationship or create new dimension tables in your semantic model. I suggest to try to create relationships with having new dimension tables.
But for now, please check the below picture and the attached pbix file whether it suits your requirement. - 2 years ago
Hi, Please check the picture down below.
Thank you.
Jihwan_Kim
2 years agoSuper User
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
Font color condition: =
VAR _currentrev = [Revenue total:]
VAR _prevrev =
CALCULATE (
[Revenue total:],
OFFSET (
-1,
FILTER ( ALL ( 'Calendar' ), [Revenue total:] <> BLANK () ),
ORDERBY ( 'Calendar'[Date], ASC ),
,
PARTITIONBY ( 'Calendar'[Year-Quarter] )
)
)
RETURN
IF ( NOT ISBLANK ( _prevrev ) && _currentrev > _prevrev, "Green" )
abukapsoun
2 years agoPost Patron
Thank you very much for your swift reply, when I tried to create the font color condition measure, i got the following error: OFFSET 's relation parameter may have duplicate rows. This is not allowed.
Not sure how to proceed 😞