Answered by:
Need help desiging an RDLC report

Question
-
User-718146471 posted
Ok, it has been a very long time since I did this last so I am feeling like the village idiot. What I'm trying to do is list out a users' First and Last name in one cell, then under that, list all applications they have access to. What I get is
+ Last Name
+ First Name
- App1
- App2
- App3
- App4What I am instead trying to do is make it look like this:
+ Last Name, First Name - App1
- App2
- App3
- App4Trying to get Last and First Name to be one Parent field and the apps to be child fields.
Thursday, July 6, 2017 8:02 PM
Answers
-
User347430248 posted
Hi bbcompent1,
you can visit links below may help you step by step creating RDLC Reports.
How to create RDLC report step by step in ASP.Net using C# and VB.Net
create RDLC report in asp.net <sub></sub><sup></sup>
for windows application you can refer link below.
Create RDLC Report, Page Break, Repeat Header Row in Visual Studio 2010 <sub></sub><sup></sup>
Regards
Deepak
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Tuesday, July 18, 2017 8:51 AM
All replies
-
User347430248 posted
Hi bbcompent1,
so its looks like you want to merge Last Name and First Name.
you can try to use Expressions.
=Fields!FirstName.Value & " " & Fields!LastName.Value
OR
="$ " & Sum(Round((Fields!QTD_ORDER.Value - Fields!QTD_RETURN.Value) * Fields!PRICE.Value,2), "Entity_orderItens")
Reference:
How to concatenate values in RDLC expression?
Using Expressions in a ReportViewer Report
Regards
Deepak
Friday, July 7, 2017 6:55 AM -
User-718146471 posted
I'll give that a whirl Deepak, I'll let you know after I try it. Thanks!
Friday, July 7, 2017 4:30 PM -
User-718146471 posted
Hi Deepak, do you have any good tutorials that show how to create rdlc reports from start to finish? I seem to have forgotten a lot more than I realized.
Monday, July 17, 2017 10:48 AM -
User347430248 posted
Hi bbcompent1,
you can visit links below may help you step by step creating RDLC Reports.
How to create RDLC report step by step in ASP.Net using C# and VB.Net
create RDLC report in asp.net <sub></sub><sup></sup>
for windows application you can refer link below.
Create RDLC Report, Page Break, Repeat Header Row in Visual Studio 2010 <sub></sub><sup></sup>
Regards
Deepak
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Tuesday, July 18, 2017 8:51 AM