formatting

Copper Contributor

I am trying to copy a row by using the format painter and when I click the row I want to change the format, nothing happens. I had this issue a few weeks ago and can't remember exactly how I fixed it. It had something to do with saving as a certain type, but there should be an easier way to fix this. Please help. I do majority of my work through excel and its inconvenient and delays my workload.

3 Replies
maybe this macro helps...
Sub Value_Format()
' Formeln ersetzen durch Werte mit Formate
Workbooks("Datei1.xls").Worksheets("Tabelle1").Range(Sheets("Tabelle1").UsedRange.Address).Copy
With Workbooks("Datei2.xls").Worksheets("Tabelle1").Range("A1")
.PasteSpecial Paste:=xlValues ' Werte
.PasteSpecial Paste:=xlFormats ' Formate
End With
Application.CutCopyMode = False
End Sub

Hi @Sapphire87 ,

Just to be clear, Format Painter will no copy any data. Really just the text format of whatever you select. 

Say you like the text format of cell A1 and want to replicate the exact same in cell B1 you would do the following:

  1. click cell A1
  2. click "Format Painter"
  3. click cell B1

Doing so will not copy the data from A1 to B1, only the text format.

If, despite everything, the problem has not been resolved, because ...

Please try the following steps:

1. Open an Administrator Command Prompt window. If you can't find a way, please do the following:
1. Press Ctrl + Shift + ESC and open the Task Manager.
2. Click File> Run New Task
3. Make sure you have a check mark next to "Do this task with administrator privileges".
4. Enter CMD there

2. Then enter the following into the CMD:

sfc / scannow

chkdsk

DISM.exe / Online / Cleanup-image / Checkhealth

DISM.exe / Online / Cleanup-image / Scanhealth

DISM.exe / online / cleanup-image / restorehealth

If this or another answer helped you, mark it as an answer to help others