Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Create new column with specific data from a different column

Hi everyone   I have a a table where i need a new column made based on info on one of the other columns.   The table looks like this  Order No. Type Description 1 A (blank) 1 B (b...
  • amitchandak's avatar
    5 years ago

    Anonymous , Try new column

    New column =
    var _ord = [Order No]
    var _type = "C"
    return
    if(isblank([Description]), maxx(filter(Table, [Order No] =_ord && [Type] ="C"),[Description]) ,[Description])