Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi, basically all I need is for a new column to check if an existing column contains either text or number and it if does it says Yes and if it doesn't it says no.
Tried to google this but cannot get anything that matches what I need.
Example below:
Information | Answer |
No | |
F | Yes |
2 | Yes |
No | |
Y | Yes |
A | Yes |
4 | Yes |
No | |
G | Yes |
Solved! Go to Solution.
In the power query editor you can add a conditional column.
Hi, unfortunately I am getting an error saying I must enter 'a number value' into the Value box and will not let me click ok
type null
Fantastic, thank you!
If you want a DAX solution (calculated column):
IF(ISBLANK('Table'[Information]), "No", "Yes")
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
71 | |
70 | |
51 | |
47 |
User | Count |
---|---|
45 | |
38 | |
33 | |
30 | |
28 |