The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
My measure is
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
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