Pull cell formatting from a master sheet to other sheets

dukewins

New Member
Joined
Jun 1, 2012
Messages
15
I am having trouble pulling the cell formatting from a master sheet to multiple sheets. My formula is as follows:

="your property to be, which for the "&MASTER!A1&" tax year is "&MASTER!K8&". This assessment represents a "&MASTER!Q8&""

when it pulls the 5,000,000 in cell K8, to the individual sheet, it pulls 5000000, instead of 5,000,000.

any way to fix this without creating columns that record the information in text only to pull from?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Change: &MASTER!K8&

to

&TEXT(MASTER!K8,"#,###")&
 
Upvote 0
that worked - thank you

how would you do text percentages, like 10.77% and 2 digit numbers with 2 places, like 83.42
 
Upvote 0
Just change the format part of the TEXT function; Example for 83.42: &TEXT(MASTER!K8,"0.00")&
 
Upvote 0

Forum statistics

Threads
1,215,268
Messages
6,123,966
Members
449,137
Latest member
yeti1016

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top