HTML Text
"<a href=" & DataCardValue53.Text & ">Click here</a>"
and visible property as
If(!IsBlank(Yourhtml.Text),true,false)
But it is not showing 'NA'
I tried below
Visible -
If(!IsBlank(DataCardValue43), true, false)
and text as
If(!IsBlank(DataCardValue43.Text),"<a href=" & DataCardValue53.Text & ">Click here</a>","NA")
This does not work - it shows 'click here for all' - regardless if the value is present or not
My understand is that
We shouldn't be playing with the visible property as if link available t will show the link if not available it will show 'NA'. - in both scenario visible property should be true.
Now about the text property i tried this
If(IsBlank(DataCardValue43.Text),"<a href=" & DataCardValue53.Text & ">Click here</a>","NA")
But it is not working