Hello everyone!
So I have this as the Visible property for a Label that I have:
If(
IsBlank(ProjectRecord.Project_Name),
true,
IsBlank(ProjectRecord.Project_Site),
true,
IsBlank(ProjectRecord.Project_Num),
true,
false
)
On the gallery that is connected to my data source, and I can see if there is a missing Project Site, however in certain records where the Project Record is blank, my Label doesn't pop up. So the IsBlank function sometimes returns true, but most of the times it returns false. I don't know if it has to do with my Data Source for the gallery then (Its an Excel btw)?
Thanks in advance!!