Forum Discussion
Timestamps duplicate rows - break into columns
- 5 years ago
Hi damonkimble ,
IF you want to two different column ,may you should create two column as follows:
Traveling#1 = var _rank=IF([TimeStamp Taveling]<>BLANK(),RANKX('Table',[TimeStamp Taveling])) return IF(_rank=1,[TimeStamp Taveling])Traveling#2 = var _rank=IF([TimeStamp Taveling]<>BLANK(),RANKX('Table',[TimeStamp Taveling])) return IF(_rank=2,[TimeStamp Taveling])The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
damonkimble , Create a new column
Switch( true(),
not(isblank([TimeStamp Completed])) ,"Completed",
not(isblank([TimeStamp Traveling])) ,"Traveling",
"In progress"
)
Hi amitchandak , the code you sent is equivalent to the booking status column. What I wanted to know is there are two different timestamps for the "Traveling" booking status - where I want one column called Traveling#1 with one of the timestamp and Traveling #2 with the other timestamp instead of having in one column. Thank you either way!