Hello All,
I want to visible button when there is no data into the staff completed time.
Solved! Go to Solution.
Hi@RajSaha_,
Based on the issue that you mentioned, do you want to make the Button visible when there is no value in the 'Staff completed time'?
Could you please share a bit more about the scenario:
You said that you have the Button within a Gallery, so I assume that you want to make the Button visible if this time does not have the corresponding staff completed time.
I have a test on my side, please take a try as below.
Set the Visible property of the Button as below:
If(
IsBlank(
LookUp(
DataSource,
ID = ThisItem.ID,
'Staff completed time'
)
),
true,
false
)
Note: Please replace the data source with yours.
Hope it could help.
Best Regards,
Qi
In the gallery I'm using this button
Hi@RajSaha_,
Based on the issue that you mentioned, do you want to make the Button visible when there is no value in the 'Staff completed time'?
Could you please share a bit more about the scenario:
You said that you have the Button within a Gallery, so I assume that you want to make the Button visible if this time does not have the corresponding staff completed time.
I have a test on my side, please take a try as below.
Set the Visible property of the Button as below:
If(
IsBlank(
LookUp(
DataSource,
ID = ThisItem.ID,
'Staff completed time'
)
),
true,
false
)
Note: Please replace the data source with yours.
Hope it could help.
Best Regards,
Qi
User | Count |
---|---|
258 | |
110 | |
90 | |
52 | |
44 |