Hello,
I'm struggling to make operations on results obtained from grouping by
specific dimensions. To be more specific, I'd like to substract value of
e.g. sales for some product for one year from values from the preceding
year.
I'd like to somehow access the resulting recordset from grouping and make
some operations on these values, just like the SUBTOTAL function does.
Thanks in advance for any help.
Best wishes,
Marek T³uczekOne correction to my question:
> I'd like to somehow access the resulting recordset from grouping and make
> some operations on these values, just like the SUBTOTAL function does.
I meant not recordset, but set of fields.
> Thanks in advance for any help.
> Best wishes,
> Marek T³uczek
>
>
Showing posts with label operations. Show all posts
Showing posts with label operations. Show all posts
Tuesday, March 27, 2012
Saturday, February 25, 2012
Access SQL Server 2005 from C++ programs in UNIX/LINUX
Hi,
Is there as way to access SQL SErver DB for DML Operations from C++ programs in UNIX/LINUX. The current approach is by uisng Pro C to connect to ORACLE from C++. But I want to connect to SQL Server 2005.
Regards,
Kart
The best approach here is to convert the application to use ODBC rather than Embedded SQL and access SQL Server via one of the 3rd party ODBC drivers for SQL Server, such as Data Direct ( http://www.datadirect.com/products/odbc/index.ssp )Sunday, February 12, 2012
Access Formula values at runtime
How can i retrive value of a formula field or any other field in code at runtime, which can be used in code 4r further operations.
e.g :I have a formula field which calculates a Value Discrepancy.I have to show a message box Message Box based on its value from the code.
I am using CR for VS2005
Thankyou
ShauryaFinally i found the solution to my problem so i am sharing the solution here.
The values that are printed on the report can be accessed from the code by this code.
CrystalDecisions.CrystalReports.Engine.ReportDocument a = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
string value=a.Rows[0][20].ToString();
The Rows property contains the data on the front page of the report.|||how did you get this CrystalDecisions.
Any reference to add to repor to get it.
Amarjit
e.g :I have a formula field which calculates a Value Discrepancy.I have to show a message box Message Box based on its value from the code.
I am using CR for VS2005
Thankyou
ShauryaFinally i found the solution to my problem so i am sharing the solution here.
The values that are printed on the report can be accessed from the code by this code.
CrystalDecisions.CrystalReports.Engine.ReportDocument a = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
string value=a.Rows[0][20].ToString();
The Rows property contains the data on the front page of the report.|||how did you get this CrystalDecisions.
Any reference to add to repor to get it.
Amarjit
Subscribe to:
Posts (Atom)