Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to add computed rob and actual rob for same type of nifuel type
Could you please corroborate a bit more like How to calculate rob values etc..
its coming directly from the database
Can you provide sample input and expected result in Inline at least instead image?
Hi
try :
Load distinct Nifueltype,
Sum(computedROB) as computedROB,
Sum(ActualROB) as ActualROB,
resident YourTable group by Nifueltype;
Hope this helps
I dont want to do it in script level but in the chart expressions