Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi
Can any one help me in solving the below scenario
how to extract promition ids ftom the below scenario in a calculated colimn
101
102
103prm1
104prm2
106
107prm
needs answer as
103prm1
104prm2
107prm
needs the answer in a calculated column
Solved! Go to Solution.
@Anonymous Please try to create a calculated column as per below
Result =
VAR isalphanumeric = IFERROR(VALUE(Test[Column]),0)
RETURN IF(isalphanumeric=0,Test[Column])
Hi @Anonymous ,
You can create calculated column like below:
@Anonymous Please try to create a calculated column as per below
Result =
VAR isalphanumeric = IFERROR(VALUE(Test[Column]),0)
RETURN IF(isalphanumeric=0,Test[Column])
Hi @Anonymous ,
You can create calculated column like below: