The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi, I am trying to clean and transform this file but how do I move the date to the "date" column and J$ the Currency ID column in the fews instances where this is happening.
Help anyone... Thanks
@MykieJ Try creating new columns like these and then removing the old Date and Currency ID columns:
New Currency ID
= if [Currency ID] = null then [Date] else [Currency ID]
New Date
= if [Currency ID] = null then [Type] else [Date]