Excel on a Mac?

Compare Excel on a Mac to a PC

  • I prefer it to PC-Excel

    Votes: 3 16.7%
  • I don't prefer it to PC-Excel

    Votes: 10 55.6%
  • Indifferent

    Votes: 5 27.8%

  • Total voters
    18
Try Unix!

Oh oh that would put me in geek territory!! ;)
Can't do that! :rofl:

I have friends that are big into Unix/Linix etc.
VBA is really my first true foray into the programing world and I feel as though I am drinking from a fire hose!
 
Last edited by a moderator:

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
The one thing that I could never get to work in 2002 (XP) and works fine in 2003 is from http://www.contextures.com/xlDataVal14.html. Every time in 2002 it would crash, but the same file in 2003 worked fine.

Code:
'Optional code to move to next cell if Tab or Enter are pressed
'from code by Ted Lanham
Private Sub TempCombo_KeyDown(ByVal _
        KeyCode As MSForms.ReturnInteger, _
        ByVal Shift As Integer)
    Select Case KeyCode
        Case 9 'Tab 
            ActiveCell.Offset(0, 1).Activate
        Case 13 'Enter 
            ActiveCell.Offset(1, 0).Activate
        Case Else
            'do nothing
    End Select
End Sub

Sorry, I know that was way, way off topic but it's always bugged me...
 
I.e., I could never get back to how the Address Of Operator would normally work with a stand-alone version of Office '97.

My memory must be failing me - I didn't think AddressOf worked at all in 97?
 
Oh oh that would put me in geek territory!! ;)
Can't do that! :rofl:

I have friends that are big into Unix/Linix etc.
VBA is really my first true foray into the programing world and I feel as though I am drinking from a fire hose!

What do you suppose your Mac is basically running? ;)
 
What do you suppose your Mac is basically running? ;)

icon12.gif
 
But that's AddrOf, not AddressOf! ;)
 
Okay, you got me. :)

That's what I meant, though... It's easier to say 'AddressOf' than 'The Ken Getz/Michael Kaplan Workaround for AddressOf as it applies to VB[A] 5/Office 97'.
icon12.gif
 
What do you suppose your Mac is basically running? ;)

I know, I know it is based in Unix, but I don't have to know Unix to make it work.
My friends that use Unix have Macs for that purpose...

Oh oh that would put me in geek territory!!

That was definetly tongue and cheek!! LOL
EDIT: But you will not catch me using the terminal any time soon!
I feel out of my depth in VB.
 
Yeah I knew what you meant! :) I know that from Ken Getz' work; had forgotten that Michael Kaplan was involved. Can't say I ever had a use for it back then, but thought it was interesting!
 

Forum statistics

Threads
1,222,623
Messages
6,167,114
Members
452,096
Latest member
lordy888

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