The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi all,
i have column frequency with values likes below
Frequency
WD1
WD2
WD3
WD4
WD5
WD6
WD7
Daily
Daily
Anytime
Anytime
from this i want to create a new column like NewTime
if values like below
all WD 1,2,3,4,56,7 as Monthly
Daily as daily
Anytime as Random
so my new column values will be
NewTime
Monthly
Daily
Random
can anyone help how to create this . Am new to PBI.
Best
Chanty
Solved! Go to Solution.
Perhaps:
Column =
SWITCH([Frequency],
"Daily","Daily",
"Anytime","Random",
"Monthly"
)
@Anonymous
Hi @Anonymous ,
Perhaps:
Column =
SWITCH([Frequency],
"Daily","Daily",
"Anytime","Random",
"Monthly"
)
@Anonymous