Hello, i'm having some issues with one of my workflows, it takes information from a sharepoint list and send a message to the person who created the item on the list to follow the status of the request, but sometimes it present a failure, not every execution happens to do this. I tried to compare the functional with no functional flows to see if it could be any mistake from the person who created the request but it didn't seems to be the case
"Specified Version Label does not correspond to any actual version
clientRequestId: 0550e43d-53f6-47b1-8c19-1199b57a7b46
serviceRequestId: 0550e43d-53f6-47b1-8c19-1199b57a7b46"
Hi @Expiscornovus
Tried your tip and it seems to be working out pretty well, thank you once again
Hi @Gabriel_Cunha,
Thanks for sharing that expression. That one might fail with minor version calculations or when the item is created for the first time. The 1.0 version could lead to an outputs of 0 as the Since version value.
Like I mentioned in my first reply, have you tried the token approach instead?
Hi,
Thanks for your help, the actual expression in my "Since" field is
sub(int(triggerOutputs()?['body/{VersionNumber}']),1)
The header texts are in portuguese because of the native languege of my device, but I'm using the Get changes for an item or file action.
Can you tell if something is wrong with it? Or what should I do to follow your tips in the first post
Hi @Gabriel_Cunha,
It looks like you are using the Get changes for an item or file action, correct?
If so, the issue is caused by using version label text in the values in the Since and/or Until fields of that action.
Edit: ignore the part below about version number calculation, not relevant for this situation 😁 Those fields normally expect version numbers and not version labels.
The VersionLabel property is normally a text value which is something like 0.1, 0.2, 1.0, 1.1, etc.
The VersionId is a number. With minor versions it would go up by 1. So 0.4 would be VersionId 4. With major version it increments by 512.
Version label 1.0 would correspond with number 512.
Combine the two and for version label 1.2 you would get VersionId 514 (512 + 2).
Btw, in those Since and Until fields you can also use the Trigger Window Start Token & Trigger Window End Token fields instead.
Michael E. Gernaey
497
Super User 2025 Season 1
David_MA
436
Super User 2025 Season 1
Riyaz_riz11
244
Super User 2025 Season 1