Say I have a data table that I want to only show data if date range selected is 24 hours or more. If the user selects a data range less than 24 hours, I do not want to show results.
I was wondering if there is conditional statements like the following:
if (user select data range - 24h) is a positive data range:
show data
else:
show 'N/A'
Example output for over 24 hours:
Column1 Column2
Dogs 4
Cats 5
Example output for under 24 hours:
Column1 Column2
Dogs N/A
Cats N/A
Alternatively, I guess I can restrict the data range if that is possible....