Hi Guys,
I want, if I have one req no. i.e. T00003 & it has multiple quotation no.like this QS/2023/00037,QS/2023/00038,QS/2023/00040,QS/2023/00041.
How to display this multiple quotation no.
And this multiple lines are disply in rdlc report textbox.like this QS/2023/00037,QS/2023/00038,QS/2023/00040,QS/2023/00041
Is any way to do this.
Hi,
You're overwriting your variable each time you go through the repeat.
Try:
if Quotation_No := '' then
Quotation_No := Rec_quot."Quotation No"
else
Quotation_no += (',' + rec_Quot."Quotation No";
it will check if you already have something in the variable, if so, add a comma in front.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,240 Super User 2024 Season 2
Martin Dráb 230,149 Most Valuable Professional
nmaenpaa 101,156