Forum Replies Created

Viewing 6 posts - 1 through 7 (of 7 total)

  • RE: Recursive Query

    not sure if this can help (the query is pretty big)

    Declare @d1 date, @i tinyint;

    set @i = 1;

    set @d1 = case when EOMONTH(GETDATE()) > Getdate() then eomonth(getdate(), -1) else eomonth(getdate())...

  • RE: Recursive Query

    I used a while loop and got all the dates with 6 grids. How can I append all these results in the while loop one after another or in one...

  • RE: Max Value even for negative numbers

    Thank you for the inputs. I did get the results in a different way. I pulled the rates first and then added the credit and debit account accordingly and it...

  • RE: Max Value even for negative numbers

    yes..I need the largest value among the 3 values and display either a Credit or Debit (+/-).

  • RE: Max Value even for negative numbers

    That is not true in all the cases.

    Online 14 of the excel sheet I have 2 negative values and a 'zero'. It compared and calculated the highest among the...

  • RE: Max Value even for negative numbers

    Sorry, for not posting the sample data. Here is some sample data attached. I have issues only when the comm2 has negatives values and comm1 & comm3 are 'Zeros'. I...

Viewing 6 posts - 1 through 7 (of 7 total)