Phone number format "(###) ###-####" doesn't output the dash, e.g., (602) 9276178

Does this happen to anyone else or is it just me?

Same here. As a workaround you can use this formula to format appropriately when using the (###) ###-#### format.

this[0..8] + '-' + this.split(//).last(4).join

Thank you, Rich! Your solution works perfectly and I’ve added your formula to all of my relevant schemas.

Also noticed this issue, but using the formula until it’s fixed!