Hi Skip,
Thanks again for your help and direction. Here's the formula that worked. This is using actual cell references so it doesn't match the sample sheet I uploaded, but this formula did the trick. Note that it's an array formula so you have to do the whole CTRL+SHIFT+ENTER to make it work...
Hi Skip,
The data is coming in using the "From SQL Server" option in the "From Other Sources" selection in the "Data" tab in the ribbon. The main reason is there are so many transactions per month, 1 year's worth of data across 7 companies and 400+ GL accounts per company, resulted in tens of...
I am creating a Balance Sheet report and need to calculate the sum of a group of accounts based on multiple criteria. I've tried reading up on INDEX and MATCH, but I just can't extend what I've learned to accomplish my task.
I my worksheet, I have columns for Company (Col A), GL Account (Col...
I'll need to look at it more closely when I'm in front of Crystal. In the meantime, hopefully someone can offer a solution. If not, I'll try to get back to you early next week.
Pretty sure it's the same thing basically, just use AND between params in your select. Both would have to evaluate to TRUE for the report to print records. I don't have a report in front of me right now that uses this, but I've used it in the past and it should work. You can use this for as many...
Create a new parameter value 'All' then use this in your select.
IF {?Param} <> "(All)" THEN {TABLE.FIELD} = {?Param} ELSE TRUE
If no parameter is entered or selected, the report shouldn't print anything.
Jose
I agree Kray. The approach I started taking was to either create a small SSIS package and email the results of a query in an Excel file, or link a spreadsheet to the SQL server back end and let the user refresh and do whatever they want in the spreadsheet. I've always felt it kind of defeated...
In case anyone is interested, here's what I eventually came up with. It only shows the ending balance for the year in the Total column but it works for now.
SELECT [Company], [GL Account], [Description], [Year],
ISNULL([January],0) + ISNULL([February],0) + ISNULL([March],0) +...
Exact Macola 9.6.500
We've reached out to Exact and they say the DRM is no longer available and we need to use the Table List tool in the System tab. Is this true? When I read the Flexibility help file, it says the DRM should be on the install disc, but the problem is our VAR isn't very...
Using Exact Macola 9.6.500, I've been asked to create a report that will return a General Ledger trial balance showing the monthly net change for the year along with beginning and ending balances. The attached image shows the output of a SQL query in GP Dynamics that shows what I'm looking for...
Using SQL Server 2014, suppose I have a pivot query like so:
SELECT *
FROM (
SELECT
gl.reknr as [GL Account], oms25_0 as [Description], left(datename(month,docdate),13)as [Month],
bdr_hfl as Amount
FROM gbkmut gl left outer join grtbk acct on gl.reknr = acct.reknr...
Hello all,
I've searched the forum for this but I might not be using the correct terminology because I'm not finding a solution. Basically, I have a field that stores a HH:MM:SS value but with no colon. So, 12:24:59 is literally 122459. I want to take the value and display it as HH:MM:SS. I'm...
Hi folks,
Using CR XI R2 on Windows 7 Professional. Database is on a SQL Server 2008 server.
I'm trying to create a series of formulas to display notes that are stored in multiple rows and concatenate them on one row.
In the Group Header I have @InitialiseNote
WhilePrintingRecords...
Thanks COSpringsGuy but the formula is doubling the invoice detail amounts. Using a real world example:
invce_32 linnum_32 tax1_32 tax2_32 tax3_32
00945408 01 170 0 0
00945408 02 2.975 0 0
I am getting 345.96 as my total instead of 172.98
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.