I have a specific function in Power Query like this:
let Func_Test = (input) =>
input/1000 + 500
in
Func_Test
The challange is now, that the input can contain null. If this is the case, then I get an error. How can I avoid this directly in the function?