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
)
- sergej_og3 years agoSuper User
I think it is not possible to add a Web URL to a card visual. It does´t work for me in this way.
In table or matrix it works fine- chonchar3 years agoHelper V
I found that out after some research. Also, I found that the URL needs to be stored with "http://" in front of it. Do you know how to add that to the column? I can just format a matrix/table nicely to look like a card.
Thank you,
Cam