I have a process that builds a cell with a calculation of different values
Val_1 = [A1]
Val_2 = [A2]
[E1] = "=-" & Val_1 & " -" & Val_2
This builds a formula so that the users can see how the output is calculated for example
E1 =-123 -234
I have this VBA code running correctly in UK, but when the process runs in Germany it causes an error: Anwendungs- oder objektdefinierter Fehler
I tried different things but it didn't work. For example using [E1].Formula or adding a character in from of the equal ([E1] = "^=-") and then removing it ([E1]= Right([E1], Len([E1]) - 1))
How can I make it work in Germany?