Hi there,
I am currently struggling through trying to figure out why a statement in my source code isn't being executed when running the program.
The code is as follows:
taxableValueDifference := previousTaxableValue - newTaxableValue;
grandTotalTVDifference := grandTotalTVDifference - taxableValueDifference;
XLWorksheet.Cells[row, 7].Value := XLWorksheet.Cells[row, 7].Value + taxableValueDifference;
The first and last statement execute, but the middle statement is just skipped. Any ideas as to why this is so?
Thanks in advance!!