I have a choice column in my Dataverse with following choices: "Active", "Inactiv", "Delete", and also with blank values. I want to create a formula column, which displays "No Status" for the blank values, otherwise it takes the values from the choice column.
This new formula column should optimally be a choice column as well.
I tried this formula, but it didn´t work out:
If( IsBlank([crd6c_status]), "Kein Status", [crd6c_status] )
I´m grateful for any inputs.