Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have problem in rdlc report.i have a text box and i want to show busno in that taxtbox where id=1;
first row of my table is blank.

i give expression in textbox :
=First(iif(Fields!ID.Value = 1,Fields!busno.Value,"empty value here"), "DataSetPatientInfo")
its not work please tell us what i hv done wrong.


please anyone help.
thanks in advance.
Posted
Updated 6-Oct-13 22:23pm
v3
Comments
Rashid Choudhary 7-Oct-13 4:21am    
first row of my table is blank

1 solution

Try this,Hope will help you out,
//if id =1 then busno else nothing

=iif(Fields!ID.Value=1,Fields!busno.Value,"")

Have a Great day !!!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900