We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Im trying to creat a simple function via the custom Column function in Power BI,
I have a column with numbers in and I'm basically wanting to say any numbers beginning with 1336 or 1701 return the value as "online" and for everything else return the value "offline", I can get the function to return the "online" but i am only returning errors where it should be "offline", any ideas
this is my function:-
=if Text.Start([DK Number],4)="1336" or "1701" then "online" else "offline")
Solved! Go to Solution.
Hi @Darren75,
try this instead:
let n =Text.Start([DK Number],4) in if (n="1336" or n= 1701") then "online" else "offline"
I hope this is helpful
Hi @Darren75,
v1
if Text.Start([DK Number],4)="1336" or Text.Start([DK Number],4)="1701" then "online" else "offline"
v2
if List.Contains({"1336", "1701"}, Text.Start([DK Number], 4)) then "online" else "offline"
Hi @Darren75,
v1
if Text.Start([DK Number],4)="1336" or Text.Start([DK Number],4)="1701" then "online" else "offline"
v2
if List.Contains({"1336", "1701"}, Text.Start([DK Number], 4)) then "online" else "offline"
Hi @Darren75,
try this instead:
let n =Text.Start([DK Number],4) in if (n="1336" or n= 1701") then "online" else "offline"
I hope this is helpful
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |