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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
User777
Regular Visitor

Quotation mark in Text Filter

I am having trouble to filter data in new column:

I have new column which i want to be filled like 

Column 2 = if( [Retailer] = """KDK""", "YES", "NO")

 

The data i am looking for in column Retailer is "KDK"

Above syntax doesnt work for me for some reason, please give better solution

Thanks in advance.

1 ACCEPTED SOLUTION
nandukrishnavs
Super User
Super User

@User777 

 

Another method

Column2 = 
VAR _text =UNICHAR(34)&"KDK"&UNICHAR(34)
VAR _result = IF([Retailer]=_text,"Yes","No")
return _result

nandukrishnavs_0-1692186721423.png

 


Regards,
Nandu Krishna

View solution in original post

2 REPLIES 2
nandukrishnavs
Super User
Super User

@User777 

 

Another method

Column2 = 
VAR _text =UNICHAR(34)&"KDK"&UNICHAR(34)
VAR _result = IF([Retailer]=_text,"Yes","No")
return _result

nandukrishnavs_0-1692186721423.png

 


Regards,
Nandu Krishna

SamInogic
Super User
Super User

Hi @User777 

It should work with your expression as shown in below screenshot,

SamInogic_0-1692186212054.png

Could you please provide any screenshot of your incorrect output or error message ?

Thanks!

 

Inogic Professional Services Division

Power Platform and Microsoft Dynamics 365 CRM Development – All under one roof!

Drop an email at crm@inogic.com

Services:  http://www.inogic.com/services/

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

Inogic Professional Services: Power Platform/Dynamics 365 CRM
An expert technical extension for your techno-functional business needs
Drop an email at crm@inogic.com
Service: https://www.inogic.com/services/
Tips and Tricks: https://www.inogic.com/blog/

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors