ComputedColumn

is there any way to have a if condition statement in computed column,
if not? how can I have group band on a Formula field ?

Comments

  • edited 2:01AM
    Hello,

    You can use "?" statement in the column's Expression:

    [Table1.Column1] == "A" ? "Alpha" : "Beta"

    Do you need to sort a band on custom condition? Just open the databand editor and put this condition in the "Sort by" textbox, for example

    [Table1.Name].Substring(0,1)

Leave a Comment