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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Good Day,
I'm trying to create an expression to display a Zip Code as #####-#### if it is 9 digits or as ##### if it is 5 digits.
Can anyone point me in the right direction?
Solved! Go to Solution.
Figured it out:
=IIf(Len(Fields!Zip.Value) = 5, Fields!Zip.Value, Left(Fields!Zip.Value, 5) &"-" & Right(Fields!Zip.Value, 4))
Figured it out:
=IIf(Len(Fields!Zip.Value) = 5, Fields!Zip.Value, Left(Fields!Zip.Value, 5) &"-" & Right(Fields!Zip.Value, 4))