Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a datefield (myhours) and at present it shows all the hours from midnight to night 11 pm .
My requirement is to display only those messages between the operating hours between 09:00 am to 15:30 pm .
How can write the calculated dimension?
Any help is highly appreciated.
thanks.
Try this may be?
= IF(Hour(Interval(created_at,'hh')) >= 9 AND Hour(Interval(created_at,'hh')) <16, Hour(Interval(created_at,'hh')))
May be this?
If(myhours > '09:00' and myhours < '15:30', myhours)
Or
If(myhours > '09:00 am' and myhours < '15:30 pm', myhours)
No it is not displaying what i anticipated.
Can you please post few sample rows of the data....
How does the data looks ? meaning is it 9 am or 09.00 am or 9 ...? Can you share the sample rows of the data...
Yes it was a time stamp but i have used maketime funtion and display only hours .
It shows 09:00 hrs
One solution is, in the backend table either create a new field with out 'hrs' tag or have only one field with out 'hrs'.
Take a look at the attached sample and hope this helps in the right direction:
Try this may be?
= IF(Hour(Interval(created_at,'hh')) >= 9 AND Hour(Interval(created_at,'hh')) <16, Hour(Interval(created_at,'hh')))
Can you provide sample data in excel for myhours, Please?