In Powerapps, I am having a Button(View Report). In Button Onselect : Launch("http://Server/reports/report/folder/reportname"). With this formula I am getting all the records in the report.
But, I should display records based on TEST_ID. Now along with that URL, I need to pass Test_ID Datacardvalue. Based on that Test_ID, the SSRS report must be filter in browser. In below, SSRS Report, the table must be filter according to the Test_ID passing from Powerapps.
For this, In Button Onselect : Launch("http://Server/reports/report/folder/MFTestTaskMap" && Test_IDDataCardValue). This formula is not working.
Can anyne help me how to solve this.
Hi @Anonymous
Refer to this article, to set a report parameter within a URL, use the following syntax:
parameter=value
Hence, define 'Test_ID' as a parameter in the report, then use the following URL:
Launch("http://Server/reports/report/folder/reportname&Test_ID="&Test_IDDataCardValue.Text)
Hope this helps.
Sik
Hi @Anonymous
I would try this...
Launch("http://Server/reports/report/folder/MFTestTaskMap" & Test_IDDataCardValue.Text)
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2