In a powerautomate flow I have the following formula that, I don't understand why, is returning an empty string.
Does it make sense the result ? Is it the expected result ? Any suggestion on how to change the formula to get the expected result ?
split( '01/01/1901@@00:00:00', '@@' )[1]
I have done some additional tests, and results still look "strange" or "non-consistant"
| Formula |
Result |
| split( '01/01/1901@@00:00:00', '@@' )[1] |
empty string |
| split( '01/01/1901@@00:00:01', '@@' )[1] |
empty string |
| split( '00:00:00@@01/01/1901', '@@' )[0] |
00:00:00 |
| split( '01/01/1901@@00:00:00@xxx', '@@' )[1] |
empty string |
| split( '01/01/1901@@01:00:00', '@@' )[1] |
01:00:00 |
Thanks for your help,
Victor.