Search found 12 matches

by charlvdb
Wed Nov 23, 2022 5:51 am
Forum: Stimulsoft Reports.BLAZOR
Topic: SumRunning not working
Replies: 1
Views: 8280

SumRunning not working

Hi I have {SumRunning(GroupHeaderBand1,Form26AgreementReportData.Transactions.Amount)} but there's no running total, it prints empty/blank. I have tried numerous solutions on the forum, such as creating a variable "Running" and using it on my desired text component (Text92): {Running = Run...
by charlvdb
Wed Nov 23, 2022 5:39 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Relations between Business Objects
Replies: 5
Views: 10084

Re: Relations between Business Objects

Thanks, managed to resolve the issue by doing some rework in the code-behind and relations were set up there as well.
by charlvdb
Wed Oct 12, 2022 2:23 pm
Forum: Stimulsoft Reports.BLAZOR
Topic: Relations between Business Objects
Replies: 5
Views: 10084

Re: Relations between Business Objects

Thanks for your response. This is currently being used in the code: _report.RegData(name, data); It used to be : _report.RegBusinessObject(name, data); This gives results, but no relations possible on the MRT. The report generates a blank page when RegData is used, my business objects was changed to...
by charlvdb
Wed Oct 12, 2022 8:39 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Relations between Business Objects
Replies: 5
Views: 10084

Relations between Business Objects

Hi Is there any way to set up a relation between two Business Objects? At the moment, no fields are popping up to setup a relation The business objects I have needs to be linked to each other via a Guid field. See attached MRT as sample, in question. Form26TransactionsReportData .AgreementId needs t...
by charlvdb
Tue Aug 03, 2021 8:31 am
Forum: Stimulsoft Reports.WPF
Topic: Strikeout on Condition
Replies: 1
Views: 1412

Strikeout on Condition

Hi I want to strikeout text when a certain condition is met, however I do not seem to have this option. See attached screenshot for more information. I also added the document in question, text21 is where I want a strikeout condition when IncomeExpense.MinRegulatoryAmount > 0 Version 2019.3.1 -- Una...
by charlvdb
Thu Jul 02, 2020 10:40 am
Forum: Stimulsoft Reports.WPF
Topic: SUM a value from multiple databands not working
Replies: 3
Views: 4480

Re: SUM a value from multiple databands not working

Many thanks Lech!
That solved my problem!

Code: Select all

{Totals.Sum(DataBand2,Afford.Amount) + Sum(DataBand4,Afford.Amount)}
by charlvdb
Thu Jul 02, 2020 4:44 am
Forum: Stimulsoft Reports.WPF
Topic: SUM a value from multiple databands not working
Replies: 3
Views: 4480

SUM a value from multiple databands not working

Hi I have multiple filtered databands from one datasource. I want to sum the same column from different databands, but only the one databand is being summed, the other is not. Attached is my report and a PDF printout of it currently with data, with comments for better understanding what is wrong. {S...
by charlvdb
Fri Jun 01, 2018 8:16 am
Forum: Stimulsoft Reports.NET
Topic: Split string expression
Replies: 5
Views: 4121

Re: Split string expression

Hi Thank you, i see it's working with that example.

I noticed my string's values will always be in UPPER case, hence not working 100% for me.

Can the expression be amended to cater for uppercase characters inside the string? My current result for ALFA BRAVO CHARLIE returns: ALFABRAVOCHARLIE
by charlvdb
Fri Jun 01, 2018 4:05 am
Forum: Stimulsoft Reports.NET
Topic: Split string expression
Replies: 5
Views: 4121

Re: Split string expression

Lech Kulikowski wrote: Thu May 31, 2018 9:39 pm Hello,

As a way, you can use Regex:

Code: Select all

{System.Text.RegularExpressions.Regex.Replace(YourValue, @"[^A-Z,\W]", "")}
Thank you.
Thank you for the response.

Using that expression my string is returned:

ALFABRAVOCHARLIE

Instead of A B C
by charlvdb
Thu May 31, 2018 11:45 am
Forum: Stimulsoft Reports.NET
Topic: Split string expression
Replies: 5
Views: 4121

Split string expression

Hi Is it possible to have an expression in stimulsoft where you pass through a string, seperated by spaces ,to be split by the first letter of each word inside the string? This is to gather the initials from first names. For example; My string is Alfa Bravo Charlie I want the expression to return: A...