Viewing 8 posts - 16 through 23 (of 23 total)
I may have misundestood this but if you go into the table properties > visibility tab you could add an expression along the lines of below to define whether the...
November 23, 2009 at 10:15 am
ah, I didn't realise that you were working with a Matrix not a Table. I don't know how to merge those columns I think they are just driven by the...
November 10, 2009 at 7:43 am
if that's the case then you can select/highlight the four cells in the row where you would like the heading to appear then right click and select 'Merge cells' this...
November 10, 2009 at 6:27 am
Hi try the following example, a table is created with the dummy data in and then an update is performed on the table where the table is joined into itself...
November 9, 2009 at 9:58 am
Hi,
I may be misunderstanding this but are you trying to merge the heading values in the row above to cover the four columns?
November 9, 2009 at 9:45 am
Could you do a sum on the values where the invdate equals the max invdate within the month grouping, something along the lines of,
SUM(IIF(invdate = MAX(invdate,"Month"),InvBalance,0)
November 9, 2009 at 9:39 am
Hi,
if you have the row number for the table already you could join this table in on itself as below allow you to join one row to the next
SELECTtable1.column1,
...
November 9, 2009 at 9:34 am
I think you will have to declare the CTE for each insert as below, I don't think that the CTE can be shared between two seperate select statements.
WITH CTE1(col1,col2)
AS
(SELECT col1,col2...
August 6, 2009 at 5:26 am
Viewing 8 posts - 16 through 23 (of 23 total)