That is perfectly right if you added the transformation to the sitemap. The control page is more or less to show that the item you have setup is working.
why this is not showing anymore the specified unit “kWh”? the division works, but in the sidemap i am missing the units! If puting there again “value [%s kWh]” … i get the value without the division…
You should use [%.3f kWh] because the value is a float the 3f means three digits behind the decimal point, so you could also use [%.1f kWh] for one digit.
If you want a number without decimals [%d kWh] do not use [%s kWh] that is for text.