Forum Discussion
Creative_tree88
1 year agoHelper V
Calculating a date based on one variable in data
Hi all - I have some data (see sample). I need to be able to produce a derived column in the dataset based on whatever the field is in column B (Type). If it's Activity, then the date needs to show...
- 1 year ago
This should be pretty straighforward either with DAX or Power Query unles you 're looking for something else.
Vijay_Chethan
1 year agoResolver III
Hello Creative_tree88,
create a calculated column
Derived_date_column=
if([Type]="Activity",[Event Date],[Request Date])
if this hepls , please mark as solution