Hi,
Having a doubt,
How to divide data in this format?
Hi @AlterCom
My take here is that you're getting a timestamp and looking to bucket the minutes into 0-10, 10-20, 20-30, etc but feel free to add more detail if there's more to it.
Can do this with a formula and an If statement.
Quick sample attached
How are you trying to divide the data?
If you're trying to divide the bucket into low and high, then a Text to Columns tool will work. Set the tool to parse on the Bucket field, and use a hyphen as the delimiter to separate into 2 columns.You can rename them with a Select tool.Let me know if that helps.
Cheers!
Esther
Hi
Or this formula too
if DateTimeMinutes([Time]) + (DateTimeSeconds([Time])/100) <= 10 then '00-10'elseif DateTimeMinutes([Time]) + (DateTimeSeconds([Time])/100) <= 20 then '10-20'elseif DateTimeMinutes([Time]) + (DateTimeSeconds([Time])/100) <= 30 then '20-30'elseif DateTimeMinutes([Time]) + (DateTimeSeconds([Time])/100) <= 40 then '30-40'elseif DateTimeMinutes([Time]) + (DateTimeSeconds([Time])/100) <= 50 then '40-50'else '50-00'endif
[]