Re: Changing color based on data exist or not in sharepoint list
@Mahesh005 - assuming the Items property of your Combo Box is the data source, apply the below to the Fill property of your Button.
If(
IsBlank(
LookUp(
'Your Data',
Title = Your_ComboBox.Selected.Title',
'Actual Date'
)
),
Color.Yellow,
Color.Blue
)
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.