ABOUT REPORT IN REPORT BUILDER

  • HOW TO GET parameter value as null when we keep as null and show the text what we enter in textbox in report tiltle

    for example

    =IIF(IsNothing(Parameters!CUST_CODE.Value), "All" , "" ) what should we write in second " "

    plz i need help

    thank you

  • How about :

    =IIF(IsNothing(Parameters!CUST_CODE.Value), "All" , "Report : Parameter value is " + Parameters!CUST_CODE.Value )

    Fitz

  • THANK YOU

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply