Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
evano_oruvan
Frequent Visitor

Replace value in a column which is using direct query mode

I have a table named system, has a column named process, which has 10,000+ values in it, now i would like to replace values named retail to mobile, using dax calculated column or any other way, Data is fetched via direct query.

evano_oruvan_0-1664267138676.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@evano_oruvan , Just noticed @JorgePinho , already answered this. Check this update only if his update does not resolve the issue.

 

Not much can be done in direct query but try this a new column

 

if([Process] = "retail" , "Mobile", [Process])

 

Otherwise do it at the source

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@evano_oruvan , Just noticed @JorgePinho , already answered this. Check this update only if his update does not resolve the issue.

 

Not much can be done in direct query but try this a new column

 

if([Process] = "retail" , "Mobile", [Process])

 

Otherwise do it at the source

JorgePinho
Solution Sage
Solution Sage

My suggestion would be to edit the query of the direct query and do something like this:

SELECT Column1
, Column2
, CASE
WHEN Process = 'Retail' THEN 'mobile'
ELSE Process END AS Process_Replaced
, Column3...
FROM TableName

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.