ssrs 2008 cascading parameters

后端 未结 2 656
猫巷女王i
猫巷女王i 2021-01-25 01:16

I am currently using SQL 2008 R2 with SQL server Report Service 2008. I am creating a report with the following parameters - Staff_name, Client_name, Lab, lab_date, etc. When

相关标签:
2条回答
  • 2021-01-25 01:44

    After looking at different forums and talking with several IT professionals, I have desided to create two seperate forms. One for the insert and one for the update as SSRS does not seem to have the functionality to do a single form.

    0 讨论(0)
  • 2021-01-25 01:55

    You are missing the column names. Try with:

    SELECT 
    ' ' as Date_Lab_Test_Ordered, ' ' as Ordering_Provider, ' ' as Provider_Specialty, 
    ' ' as Provider_Contact, ' ' as Desc_of_Order, ' ' as Date_Order_Filled, 
    ' ' as Date_Receipt_Verified
    
    0 讨论(0)
提交回复
热议问题