Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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