Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello,
I need help with validating values using DAX to determine if they contain only numeric values.
If the value contains only numeric values, it should return TRUE; otherwise, it should return FALSE.
| Value | 
| gtest@gmail.com | 
| 16546854 | 
| 464213 | 
| 1641654 | 
| 564646 | 
| 646464 | 
| 546498 | 
| 46464 | 
| 64646464 | 
| 646486 | 
| 64646546 | 
| ASW4646464 | 
| AW54646 | 
| AQ464654 | 
| AD446464 | 
| AS4646DD | 
| ASDSWSD | 
| KLHH | 
| OJOJ | 
| POJPOJP | 
Solved! Go to Solution.
hi @InsightSeeker ,
You can use VALUE function and ISERROR to check whether the text returns a number.
Test = 
IF ( NOT ( ISERROR ( VALUE ( 'Table'[Value] ) ) ), TRUE (), FALSE () )
hi @InsightSeeker ,
You can use VALUE function and ISERROR to check whether the text returns a number.
Test = 
IF ( NOT ( ISERROR ( VALUE ( 'Table'[Value] ) ) ), TRUE (), FALSE () )
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 85 | |
| 49 | |
| 36 | |
| 31 | |
| 30 |