Any help is greatly appreciated. I have a table with some fields: IsExpedited(boolean), ErrorCode22(number)
When I put them in the details section, they look like this:
IsExpedited ErrorCode22
TRUE 1
TRUE 1
TRUE 0
Then in my footer, I have a formula:
IF ({Command.IsExpedited}) = TRUE THEN
SUM({Command.ErrorCode22,{Command.UserName})
This should give me a total of 2, but it gives me nothing. When I add "if isNull({Command.IsExpedited}) OR ({Command.IsExpedited}) = TRUE then I get the total of 2.
But the field is clearly "TRUE". The db is SQL server 2005 and the field type in SQL is set to BIT.
Am I missing something here, as to why I need to account for NULL when the field clearly has TRUE in it????
Any help is greatly appreciated, thanks!
When I put them in the details section, they look like this:
IsExpedited ErrorCode22
TRUE 1
TRUE 1
TRUE 0
Then in my footer, I have a formula:
IF ({Command.IsExpedited}) = TRUE THEN
SUM({Command.ErrorCode22,{Command.UserName})
This should give me a total of 2, but it gives me nothing. When I add "if isNull({Command.IsExpedited}) OR ({Command.IsExpedited}) = TRUE then I get the total of 2.
But the field is clearly "TRUE". The db is SQL server 2005 and the field type in SQL is set to BIT.
Am I missing something here, as to why I need to account for NULL when the field clearly has TRUE in it????
Any help is greatly appreciated, thanks!