HI guys ..
I need little help in SSRS reports. I want to display data like this
IF Percentage < 40 and denominator <> 0 after running reports it should display
Report1
None
query i am using in SSRS DATASET :
SELECT ID , description,Numerator,Denominator ,Percentage,'Report1' as Report_NameFROM dbo.mytable Where Percentage < 40 and denominator <> 0
Thanks ...