Hello,
I have a gallery that has a label that shows a start date and end date. I want the text to show only the start date if it's a single day event, and if it's a multiple day event, then show the date range.
I have the below code in the text property which is showing the true value correctly, but the else value doesn't populate. Is this a restriction with the label or am I missing something else?
If(ThisItem.'Vacation Start Date' = ThisItem.'Vacation End Date', ThisItem.'Vacation Start Date', ThisItem.'Vacation Start Date' & " - " & ThisItem.'Vacation End Date')