Forum Discussion
Make two separate formatted texts by using SWITCH
Hello,
My measure is
3 Replies
- amitchandakSuper User
Anonymous , As of now there is no option for font size formatting
- selimovdMost Valuable Professional
Hello Anonymous ,
what exactly do you want to do? Do you want to create a measure or a calculated column?
In general VALUES returns a column with single values. So this approach would only work if only one value is returned.
I would try something like this:
Accept / Reject sign = SWITCH ( MAX ( 'Chart'[Chart type] ), "Accept", "ACCEPT", "Reject", "REJECT" )You can also archive the same with the following approach:
Accept / Reject sign = UPPER ( MAX ( 'Chart'[Chart type] ) )If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution โ๏ธ and give it a thumbs up ๐
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic- AnonymousNot applicable
I'd like just to have a sign, if chart will be for accept, it will have a sign "Accept" above the chart, if Reject, then Reject, but I'd like to have different formats on these signs and avoid using bookmarks