Question: In Crystal Reports, I had a Formula '@Birth Weight < 1500'
'@Birth Weight < 1500' was set up as follows:
The @Deliveries is set up as follows:
I would like to build this with the same logic in SSRS. Any insight and help is deeply appreciated!
'@Birth Weight < 1500' was set up as follows:
Code:
IF {@Deliveries} = 1 and {aaUDS7;1.BirthWeight} > 0
and {aaUDS7;1.BirthWeight} < 1501 then 1 else 0
The @Deliveries is set up as follows:
Code:
IF {aaUDS7;1.DeliveryType} <> 'No Entry' then 1 else 0
I would like to build this with the same logic in SSRS. Any insight and help is deeply appreciated!