Indent text

pcrowley

Board Regular
Joined
Dec 12, 2011
Messages
118
I have a spreadsheet where text in column D may repeat several times. The repetitions will always be grouped together. I need to look at the entries in column D and when they repeat I want to indent them five spaces.

So the first occurrence of a text value will be left justified with no indent. All subsequent occurrences will be left justified with a five-space indent.


Is it possible to do this with conditional formatting?

Thank you for your help.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Select column D. Click Conditional Formatting > New Rule > Use a formula > and enter this in the formula box:

=COUNTIF(D$1:D1,D1)>1

Now click the Format... button > select the Number tab > select the Custom Category > and in the Type: box enter:

Code:
0;0;0;"     "@

Let us know if this works for you.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,916
Members
449,093
Latest member
dbomb1414

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