Forum Discussion
chonchar
3 years agoHelper V
Hyperlink
Good morning, I have a table with email addresses in one column. I have displayed these values in a card in report view. Additionally, I have written a DAX to show "N/A" for blank values. Th...
chonchar
3 years agoHelper V
Desired result: "My goal is to create an action on a card such that it promts you to the website in the card."
DAX is below, but that is working perfectly.
I cannot share the PBIX file under any circumstances.
Website =
VAR _Website =
MAX(
'FAKENAMEFORWebsites'[Website URL]
)
Return
IF(
_Website = "", "N/A", _Website
)