Forum Discussion
Convert to 30min interval
- 4 years ago
You can make it easily:
1. Adjust the formulas to AM PM format2. Create a table in power query with you categories and add index (make sure to filter cate category by the index)
3. Create relationship between the two tables
4. Voila
You can make it easily:
1. Adjust the formulas to AM PM format
2. Create a table in power query with you categories and add index (make sure to filter cate category by the index)
3. Create relationship between the two tables
4. Voila
I have a doubt in this. When we say this
Table[Timestamp]<TIMEVALUE("08:00"), "8;00am"
Table[Timestamp]<TIMEVALUE("08:30"), "8;30am"
If I had a 06:30 in the Timestamp column. what will it be considered? 8 or 8;30am?
- NickolajJessen4 years agoSolution Sage
That's a great questions!
it returns the first value that is TRUETable[Timestamp]<TIMEVALUE("08:00"), "8;00am" // This is true // AND THIS IS FIRST
Table[Timestamp]<TIMEVALUE("08:30"), "8;30am" // This also true, but is never evaluated, beause the first the first was true