Search found 23 matches

by CCS
Thu Feb 22, 2024 6:04 am
Forum: Stimulsoft Reports.NET
Topic: Using Range in variables
Replies: 1
Views: 358

Using Range in variables

So I want to show a variable prompt in Preview. I would like to allow user to specify a From and a To value. I use the Range type. In the Init By, I use an Expression. And I specify my table field in the From and To (did this by picking from the field list). I turn on Request from User and Allow Use...
by CCS
Thu Feb 22, 2024 5:56 am
Forum: Stimulsoft Reports.NET
Topic: Spacing between subreports
Replies: 13
Views: 10068

Re: Spacing between subreports

Hi
The purpose of this is so as to be able to save data with the report so that we can do it when you guys ask for a copy of the report. Without this option we can only upload a report with no data.

I did see it in 2024.1.2. Now it is no longer shown in menu.
by CCS
Thu Feb 22, 2024 5:54 am
Forum: Stimulsoft Reports.NET
Topic: Can this be done in the Filter of a DataBand
Replies: 7
Views: 1529

Re: Can this be done in the Filter of a DataBand

OK so there is hope after all.

Nice
by CCS
Tue Feb 20, 2024 1:52 am
Forum: Stimulsoft Reports.NET
Topic: Spacing between subreports
Replies: 13
Views: 10068

Re: Spacing between subreports

Saw the "Embed all data to resources" in 2024.1.2 but now that I am on 2024.1.3, this is now gone.

Did I miss something?
by CCS
Tue Feb 20, 2024 1:32 am
Forum: Stimulsoft Reports.NET
Topic: Can this be done in the Filter of a DataBand
Replies: 7
Views: 1529

Re: Can this be done in the Filter of a DataBand

Sorry it took a while to get back.

Actually, it did not work because of the use of String in the variables used to compare. So, I am looking at other ways to do what I want.
by CCS
Tue Feb 06, 2024 8:02 am
Forum: Stimulsoft Reports.NET
Topic: Reverse numeric value
Replies: 1
Views: 327

Reverse numeric value

Hi I have a databand where I created a calc column that multiplies a numeric field with -1. It shows positive in the databand. This is what I want. I then added a group footer and I added a Summary field that Sum the reversed value (using sum by the column for the report). The value shown is negativ...
by CCS
Fri Jan 12, 2024 3:03 am
Forum: Stimulsoft Reports.NET
Topic: Spacing between subreports
Replies: 13
Views: 10068

Re: Spacing between subreports

My team mates reckon to stay with the older version for the time being. So, I guess I have to KIV this for awhile.

Thanks
by CCS
Fri Jan 12, 2024 3:02 am
Forum: Stimulsoft Reports.NET
Topic: Can this be done in the Filter of a DataBand
Replies: 7
Views: 1529

Re: Can this be done in the Filter of a DataBand

OK thanks will try that.
by CCS
Fri Jan 12, 2024 3:00 am
Forum: Stimulsoft Reports.NET
Topic: Looking for examples report that does the following
Replies: 6
Views: 1435

Re: Looking for examples report that does the following

Yes I can see it does not allow that. I am trying to migrate a Crystal Report that allow at runtime, user selection of FROM TO of a string field. If using that in Databand Filter is not allowed, is there a technique you can suggest to get the same kind of filtering? I think I have reviewed most if n...
by CCS
Thu Jan 11, 2024 3:06 am
Forum: Stimulsoft Reports.NET
Topic: Can this be done in the Filter of a DataBand
Replies: 7
Views: 1529

Can this be done in the Filter of a DataBand

IIF
(
VAR_SortBy == "EmployeeID", DBA_Employee.EmployeeId>=VAR_Selection.From && DBA_Employee.EmployeeId>=VAR_Selection.To, DBA_Employee.EmployeeName>=VAR_Selection.From && DBA_Employee.EmployeeName>=VAR_Selection.To
)