Hello everyone
once again I need your help with my import into a SharePoint list from Excel.
I have numerical values these I have now set a variable.
But now he puts zero everywhere. Have checked an example against. Where there is a number in it, it writes a 0.
I hope for your support.
Best regards,
Hi @Schroeter,
Double is a floating point number/decimal. So, it seems your field expects that.
I see you are using a string in your variable (zeichenfolge). You could turn it into a float with a float function.
Try something like:
if(empty(variables('VariDouble3')),0.0,float(variables('VariDouble3')))
Hello Thanks for the method. Works perfectly.
But I keep getting an error, but I can't find the column.
Unable to process template language expressions in action 'Element_erstellen' inputs at line '0' and column '0': 'The template language function 'int' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'.
Can you tell me how to locate this error?
I think the error might be in one of your other inputs to the action.
I fear you need to show us all the functions you used in that action.
Okay..
Okay..
If you look at the run log, which value does varDate1 have before the problematic action?
Hello,
Good:
Not Good:
thank you
Maybe it's because I have date with time and some date without time.
That the formula hangs on it?
addDays('1899-12-30',int(first(split(variables('varDate1'), '.'))),'yyyy-MM-dd')
best regards
User | Count |
---|---|
16 | |
16 | |
14 | |
9 | |
8 |
User | Count |
---|---|
30 | |
28 | |
24 | |
23 | |
13 |