DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

automatic change in all pages of the report

Hello,

I have a question regarding a change in the layout report.
Is there perhaps the possibility, if I have a report of about 50 pages, a change to the text object in the first page and then it will be automatically sent to all pages

0 Kudos
Message 1 of 35
(1,749 Views)

Hi Wasim90,

 

You can try this here:

Walter_Rick_0-1656332021926.png

 

Greetings

Walter

0 Kudos
Message 2 of 35
(1,733 Views)

Hay Walter,

 

Thank you 👍

 

I also have a question about the average.
I want to show mean value for each results from one channel in report, maybe there is a possibility to do that.

 

Best grads

 

0 Kudos
Message 3 of 35
(1,714 Views)

Hi Wasim90,

 

I have attached an example for the legend in a 2D axis system.

 

Greetings

Walter

0 Kudos
Message 4 of 35
(1,706 Views)

Hi Walter,

 

I tried but it didn't work. Is there perhaps an explanation for the code for mean?. So for example 0 or or "d.dd"?? I attached an example but couldn't find the right code.

 

Thanks in advance

 

0 Kudos
Message 5 of 35
(1,700 Views)

Hi Wasin90,

 

If you open the legend of my example layout you should see this:

 

Walter_Rick_0-1656671178517.png

 

The code is

@@str(cch(Data.GetChannel(CurrChnNo),0), "d.dd")@@

 

CCH is a DIAdem function (details are described in the help)

 

Greetings

Walter

 

 

 

0 Kudos
Message 6 of 35
(1,694 Views)

Hi Walter,

 

ok Thank you , it's worked out

 

Best regards

0 Kudos
Message 7 of 35
(1,690 Views)

Hi Walter,

I would like to expand my legend, so that I can reckon the length of my events.
With the function CCh you can also calculate the span of a channel but not the length of the channel on the X axis (X axis is the time)

Is there maybe a function for it.

Best regards

Wasim90_1-1656773597257.png

 

0 Kudos
Message 8 of 35
(1,681 Views)

Hi Wasim90,

 

In case you work with one of the latest DIAdem versions and your channel has an X-Relation then you can add a column to the legend with this content:

 

@@str(Data.GetChannel(CurrChnNo).XRelation.Maximum, "d.dd")@@

 

Or you must calculate the max value of the time channel and store this a new custom property. This property can be added to the legend like this:

 

@@str(Data.GetChannel(CurrChnNo).Properties("<My Property>").Value, "d.dd")@@

 

Greetings

Walter

0 Kudos
Message 9 of 35
(1,670 Views)

hi walter,


Thanks for the answer.
Unfortunately it didn't work for me, this function (@@str(Data.GetChannel(CurrChnNo). XRelation.Maximum, "d.dd") @@)  gives me the maximum value. What is but just need the length (with seconds) of the events in the channel (see the picture please).

i use version 2022

 

Greetings

Wasim90_0-1656923477851.png

 

0 Kudos
Message 10 of 35
(1,665 Views)