I'm trying to create an Input Field, but I'm getting a weird result. Let's say I have a field called Adjustment. It has a value in it pulled from the data source. I want to be able to adjust in within the application, so I'm creating an Input Field for it.
My script looks like this:
INPUTFIELD WhatIfAdjustment;
Load Adjustment,
Adjustment as WhatIfAdjustment
from Data.qvd
(qvd);
On the front end, my WhatIfAdjustment field is just showing up as a counter row - each row has a unique value, starting from zero. When I remove the INPUTFIELD line from my script, it's fine - the WhatIfAdjustment field matches the Adjustment field as you'd expect.