Hi,
i want that, if the Browsegallery picture is empty its use a standard picture. Is this Possible?
Its use (ThisItem.Picture)
I have uploaded a standard Picture called EmptyPicture.
I tried with this function
If(isempty(ThisItem.Picture); EmptyPicture[; ThisItem.Picture] )
but it doesnt work, could anyone pls help?
Solved! Go to Solution.
You might want to give the Coalesce function a try...I often use it just for these situations and it works great.
In your formula:
Coalesce(ThisItem.Picture; EmptyPicture)
If the first parameter is empty/blank, then it will use the second parameter.
I hope this is helpful for you.
You might want to give the Coalesce function a try...I often use it just for these situations and it works great.
In your formula:
Coalesce(ThisItem.Picture; EmptyPicture)
If the first parameter is empty/blank, then it will use the second parameter.
I hope this is helpful for you.
User | Count |
---|---|
132 | |
129 | |
78 | |
74 | |
70 |
User | Count |
---|---|
210 | |
199 | |
64 | |
63 | |
52 |