Hi @krfajar,
Does your Float number contain decimal places? If not, you could put the int() function into the second parameter of addDays() function:
addDays(utcNow(),int(variables('Float')),'yyyy-MM-dd')

If it contains, you should remove the decimal part, for example:
first(split(string(variables('Float')),'.'))
addDays(utcNow(),int(outputs('Compose_2')),'yyyy-MM-dd')

Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.