Excel for Mac 2011 equivalent of ctrl+shift+j

benje02

New Member
Joined
Apr 25, 2014
Messages
1
I am trying to use Find and Replace to find the pipe symbol (|) and replace this with a carriage return. The ctrl+shift+j does not work for me on the Mac keyboard using Excel 2011 for Mac.

If I go into my VM running windows and Excel, then it works just fine.

Thanks,
Benje02
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
You can display the Find and Replace dialog with Command-F. But you’ll run into a problem because you can’t press the Carriage Return key in the Replace field because it activates the search. You can get around the problem by using a macro like:

Code:
Sub ReplacewithCR()    
Cells.Replace What:="|", Replacement:=Chr(13), LookAt:=xlPart, SearchOrder _
        :=xlByRows, MatchCase:=False
End Sub

Click here for more about Excel keyboard shortcuts.
 
Upvote 0

Forum statistics

Threads
1,215,836
Messages
6,127,177
Members
449,368
Latest member
JayHo

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