Using computed Columns to Create another Computed Column in a table

  • Hi,

    Can we used the Computed Columns to create another computed Column in the same table?

    Like

    Column A = B+C

    We can use this like E = (B+C)+D.

    But can we use it like this?

    Column E = A+D

    Thanks

    Deeps

  • Like

    Column A = B+C

    We can use this like E = (B+C)+D.

    But can we use it like this?

    Column E = A+D

    If you want to do it apply the same logic implemented to calculate column 'A' (in your example) and then add the same with 'D' to derive 'E'

    something like E=B+C+D

    You cannot implement the computed column directly here to calculate E.

    Thanks,

    Chandru

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply