But you have said that the formula({Cells[1,1]}) worked in cross-table only.Aleksey wrote:Hello,
You can use the expression from Cells[1,1] in your formula.shrek wrote:Hi,
Whether can use the formula in the Table,
After I used this formula({Cells[1,1]}) in the Table shows the result is '0'
Thank you.
How to use Stimulsoft Reports like EXCEL
Re: How to use Stimulsoft Reports like EXCEL
Re: How to use Stimulsoft Reports like EXCEL
Hello,
Yes, expression Cell[] working only for CrossTab.
In your "cell" you set a some expression (for example {DataSourceName.ColumnName128}), that's expression you can use in your formula:
{1.5 * DataSourceName.ColumnName128}
Thank you.
Yes, expression Cell[] working only for CrossTab.
In your "cell" you set a some expression (for example {DataSourceName.ColumnName128}), that's expression you can use in your formula:
{1.5 * DataSourceName.ColumnName128}
Thank you.
Re: How to use Stimulsoft Reports like EXCEL
Hi Aleksey,
We made a demo, as you can see the enclose screen2.jpg, the expected value in the red frame should be the same value as the above cell instead of 655, could you please clarify what happens for it?
Thanks
BR
We made a demo, as you can see the enclose screen2.jpg, the expected value in the red frame should be the same value as the above cell instead of 655, could you please clarify what happens for it?
Thanks
BR
- Attachments
-
- screen3.jpg (55.41 KiB) Viewed 1891 times
-
- screen1.jpg (119.52 KiB) Viewed 1891 times
-
- screen2.jpg (165.47 KiB) Viewed 1891 times
Re: How to use Stimulsoft Reports like EXCEL
Hello.
Please, try to use next code in the Process Cell event of the summary cell.
Could you also specify what do you try to get in this cell?
Thank you.
Please, try to use next code in the Process Cell event of the summary cell.
Code: Select all
e.Value = Cells [0, -1] ;
Thank you.
Re: How to use Stimulsoft Reports like EXCEL
Aleksey Andreyanov wrote:Hello.
Please, try to use next code in the Process Cell event of the summary cell.Could you also specify what do you try to get in this cell?Code: Select all
e.Value = Cells [0, -1] ;
Thank you.
Code: Select all
public void CrossTab2_Sum2__GetCrossValue(object sender, Stimulsoft.Report.CrossTab.StiGetCrossValueEventArgs e)
{
e.Value = Cells[0,-1];
}
Re: How to use Stimulsoft Reports like EXCEL
Hello,
You need use the additional code in ProcessCell event.
Please see the following topic in our knowledgebase:
http://stimulsoft.helpserve.com/index.p ... icleid=350
Thank you.
You need use the additional code in ProcessCell event.
Please see the following topic in our knowledgebase:
http://stimulsoft.helpserve.com/index.p ... icleid=350
Thank you.
Re: How to use Stimulsoft Reports like EXCEL
Hello.
How to control the decimal digits.
Tanks.
How to control the decimal digits.
Tanks.
Re: How to use Stimulsoft Reports like EXCEL
Hello,
Please try to use the TextFormat property.
Thank you.
Please try to use the TextFormat property.
Thank you.
Re: How to use Stimulsoft Reports like EXCEL
Hello.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.