It will depend a bit on the structure of your tables/relationships (if you have any), but it will be something like...
[TotalRecords] := COUNTROWS(MyRecordTable)
[% of Zip] := [TotalRecords] / CALCULATE([TotalRecords], ALL(MyZipTable[ZipCode]))
Assuming you had ZipCode on rows of your pivot table.