Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In my chart title I want to use an expression to list static text and the value of a variable.
"Battery Level " + vBatteryLevel
I can get =vBatteryLevel to display the variable value, but I can't figure out how to add the static text "Battery Level " in front of it.
Thanks.
='Battery Level ' & vBatteryLevel
='Battery Level ' & vBatteryLevel
Thanks, I tried everything but the single quotes 🙂