How to make Excel VBA (on Windows OS) to work on Mac

Hi,
I have made an application which uses Excel forms and other features of Excel Form 9like Title, Combo Box, List Box, Buttons etc).
The code works well on Windows OS however when I run it on Mac it fails to work. Can anyone help me how to make this work.
Regards, Hitesh

Hi ExcelUser2507,
To be honest, I do not have much experience about Office for Mac.
>> The code works well on Windows OS however when I run it on Mac it fails to work.
This is possible, MAC and Windows are 2 different platforms and the features of Office System on this 2 platform is also inconsistent (the Office for Windows has more rich features).
>> How to make Excel VBA (on Windows OS) to work on Mac
This forum is mainly for discussing question about the Office on Windows platform.
The thread below may help, and Office for Mac forum should be more appropriate for asking questions about Office for Mac.
http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/vba-support-on-office-mac/5023cdbc-fadf-4e39-a49f-59d2534aef85
Hope it will help.
Best Regards,
Edward
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How to make another modal popup window in a modal popup window?

    how to make another modal popup window in a modal popup window?
    two modal windows must be made by inheritance of JDialog.

    the jdialog has constructors where you can set another jdialog as owner. (the same as frame)
    Visit our german java forum at http://www.java-forum.org/de
    An english version will be released soon at http://www.java-forum.org/en

  • How to make Excel, Word, Powerpoint the Default programs?

    Hey guys,
    Just got my new MBP, and I need to know how to make Excel, Word, Powerpoint the default programs when opening one of their files? Currently, the trial version of Iwork opens the programs which drives me crazy.....
    So, for example, for an Excel file, I want Excel to open it, NOT Numbers......etc....
    Thanks In advance.
    JW

    Select a file of that type in the Finder, choose Get Info from the File menu, change the Open With entry for it to the desired application, click on Change All, and confirm the action.
    (47808)

  • How can I restore the adress window in my lap top mac 10.6.8?

    How can I restore the url window in my lap top mac 10.6.8? I accidentally clesed it and I do not know how to rrestore it!!!!

    Choose Show Toolbar or Customize Toolbar from the View menu and put it back.
    (84096)

  • How can I use a graph make with ppt for Window on a ppt for Mac

    Dear Sir,
    A colleague of me is working with a Window PC. He make a powerpoint presentation which contain graphic.
    He sent it to another colleague who work with a Mac and Office 2011 for Mac. He can open the file, bur some sientific caratere are "damaged".
    However, if he open the same file with Office 2008 for mac, it's work.
    Do you have an idea how to make the Office 2011 for make able to read sientific caratere from a powerpoit file which come from the Window powerpoint?
    Is there a plugin for that?
    many thank

    Try "Save as" and save it in Office 2008 format.

  • How to make excel columns width autofit  ?

    Hello  Experts ,
    I download data from an internal table  to create an excel attached file and send it to customers by mail. The excel sheet looks untidy .
    the columns width of excel are not autofit .
    It's default 8.43 character .  Costomers can not use equally excel tools. eg.  format->column->autofit selection in excel.
    I was wondering how to make all excel columns' width autofit by means of ABAP . Is there any way to reach this property of excel via SAP  when I send excel attached files from an internal table .
    suggestions will be rewarded .
    Regards ,

    Hi Rajkumar or all,
    If any one able to display the records more than 65k line in Bex report v7.0..
    Pls reply with detail expalination.. Thanks in advance.. will give the reward points..
    Waiting urgently for your response..

  • How to make excel export in jsp

    Hi All,
    I have a jsp page to display a table. I want to add a "excel download" button
    in this page, once user click this button, it will invoke the microsoft excel
    and all table content will appear in the excel spreadsheet.
    I tried to set the content: <%@ page contentType="application/vnd.ms-excel"%>
    the rest code as following. However, it won't work for me. Does anyone has any
    experience in doing this?
    <%@ page contentType="application/vnd.ms-excel"%>
    <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
    <netui:html>
    <head>
    <title>
    Web Application Page
    </title>
    </head>
    <body>
    <table border="1">
    <tr style="background-color:#3366ff;font-family:arial;">
    <td>Structure</td>
    <td>Compound</td>
    <% // Get the Items from the request stream
                   Vector mr_names = (Vector) request.getAttribute("method_result_names");
    for (int f=0;f<mr_names.size();f++) {
    out.println("<td>" + mr_names.get(f) + "</td> ");
    Vector mrs = (Vector) request.getAttribute("method_results");
    for (int g=0; g<mrs.size(); g++)
    out.println("</tr><tr>");
    Vector row1 = (Vector)mrs.get(g);
    for (int f=0;f<mr_names.size()+1;f++) {
    String s = (String)row1.get(f);
    if (f==0) {
    %>
    <td><embed src="structure.jsp?Sample_code=<%=s%>" width="120" height="100"></embed></td>
    <%
    out.println("<td>" + s + "</td> ");
    out.println("</tr>");
    %>
    </table>
    </body>
    </netui:html>
    Thanks!
    Zhenhao

    I am trying to do the same thing. I also cant get it to work. I am
    thinking it may have something to do with the concept of ScopedResponse, but
    I am not sure. There is very little documentation and more importantly
    examples of how to make sense of the getOuterResponse() method. Dev2Dev and
    Google are of no help.
    Anyone care to explain this to us?
    Michael.
    "Zhenhao Qi" <[email protected]> wrote in message
    news:3fd4f634$[email protected]..
    >
    Hi All,
    I have a jsp page to display a table. I want to add a "excel download"button
    in this page, once user click this button, it will invoke the microsoftexcel
    and all table content will appear in the excel spreadsheet.
    I tried to set the content: <%@ pagecontentType="application/vnd.ms-excel"%>
    the rest code as following. However, it won't work for me. Does anyone hasany
    experience in doing this?
    <%@ page contentType="application/vnd.ms-excel"%>
    <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
    <netui:html>
    <head>
    <title>
    Web Application Page
    </title>
    </head>
    <body>
    <table border="1">
    <tr style="background-color:#3366ff;font-family:arial;">
    <td>Structure</td>
    <td>Compound</td>
    <% // Get the Items from the request stream
    Vector mr_names = (Vector) request.getAttribute("method_result_names");
    for (int f=0;f<mr_names.size();f++) {
    out.println("<td>" + mr_names.get(f) + "</td> ");
    Vector mrs = (Vector)request.getAttribute("method_results");
    for (int g=0; g<mrs.size(); g++)
    out.println("</tr><tr>");
    Vector row1 = (Vector)mrs.get(g);
    for (int f=0;f<mr_names.size()+1;f++) {
    String s = (String)row1.get(f);
    if (f==0) {
    %>
    <td><embed src="structure.jsp?Sample_code=<%=s%>"width="120" height="100"></embed></td>
    >
    <%
    out.println("<td>" + s + "</td> ");
    out.println("</tr>");
    %>
    </table>
    </body>
    </netui:html>
    Thanks!
    Zhenhao

  • How to make an AIDrawArtAGMPort on Windows with CS3, CS4 and CS5

    Hi
    I want to use the function DrawArt of AIDrawArtSuite.
    To use this function, I must have an AIDrawArtGWorld or an AIDrawArtAGMPort or an AIDrawArtAGMPoirtV6 object.
    With CS6 SDK, this suite provides a mean to instantiate an AIAGMPort.
    With CS3, CS4 and CS5 this function doesn't exist.
    On MacOS X, I can build AIDrawArtGWorld.
    On Windows, I don't know how to do it.
    On Windows how can I make an AIDrawArtAGMPort  object ?

    Hi,
    It is not recommended way to install SAP System without following Standard Installation Method. Please read concerned Official SAP Installation Guide and follow the standard procedure without inviting more complexities and headache.
    Regards,
    Bhavik G. Shroff

  • How to make Excel 2010 save a HTML report as a file without a folder created

    We have a HTML report generated by Oracle Report with headers as below:
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    In Excel 2010, after pressing the "save" button (not "save as"), it will by default save the report as web page format instead of xls, a folder "xxx.files" containing some css, xml and html files are created
    in it. If user deletes the folder carelessly, the excel report cannot be viewed at all.
    In Excel 2003, we can save it directly in its original format simply by pressing the "save" button, without creating a folder. May I know if there are any options in office 2010, macro or registries settings that can make
    Excel 2010 to do the same as Excel 2003 when pressing the "save" button? Thanks!

    Hi,
    According to your description, you want a workaround to avoid creating a new folder when saving a html file in Excel 2010.
    In my opinion, this issue is more related to the feature of HTML format or Excel 2010 application rather and I don't think we could resort to a macro or registry settings to avoid that. I suggest you posting it in
    Excel IT pro forum for more effective responses.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to make context menu in Windows 10 application?

    How to make context menu like this? With touch friendly and DPI per monitor awareness. Also considered WPF variant.

    Hybrid app? Do you mean Universal app?  Please explain what you're trying to make.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Qosmio F30-140: How to make composite-in or video-in feature working

    Hi,
    I was using windows XP MC version, but now I switched to windows 7 64-bit version and I don't know how to make the composite-in or the video-in feature work.
    Does win-7 driver support this feature! or I need to use a certain software to make use of it?!
    Another thing I'm missing in this new windows version is the Dolby effects equalizer.
    Could any body tell me how to add this option to my sound card device or send me a driver that has this option.
    Thanks in advance.

    Hi
    As far as I know there is not full Win 7 support for F30 Qosmio.
    I found some Win 7 32bit drivers on the driver page but there are no 64bit drivers.
    There are Vista 64bit drivers check it!
    The Sigma sound driver has been released for Windows Vista 64 Bit. Try it!
    The composite-in or video-in port can be used in order to receive video signals from some external devices. For example you can connect a Xbox to the F30 and can use it in connection with Windows Media Center.
    http://www.microsoft.com/windows/windows-media-center/default.aspx
    You can also conenct an camcorder or similar devices.

  • How do I share my itunes windows library with my itune mac library???

    Hi--
    I download mp3's at work on my windows pc and have downloaded itunes. I plugged in my ipod (apple,mac) and itunes said I have to set up my ipod for windows. Is there a way to import my "itunes windows libray" into my "itunes mac library," then I can sync my ipod on the mac side???
    Thanks--
    Matt

    iTunes for Windows: How to copy purchases between authorized computers
    Though it refers to items purchased from the iTunes Store, it applies to all your tracks and videos.
    Regards

  • How to make my display be the main view with my mac Book Pro

    How to set up my external display automatically work as the main display when plugged into my MacBook Pro. I had it set up to work this way on my old MBP but I got a new MBP with Mountian Lion and the Display set up seen different and I can figure out how to make my Apple HD display (about 3 years old) be the main display when I turn on my MBP. Mirror is off when I look at
    System pref’s – Display – Arrangement I just get to pick which display is left and right. I cant remember how it was set up on my old MBP. Mirroring does me no good. Any help will do!!!
    Thanks Brad

    Drag the menu bar in the picture to the picture of the other display.

  • How to make the buggy DR8-A HD Burn work?

    My HD Burn simply don't work. I have change to another new drive from
    the shop that I bought the DR8-A, but still the same!!!  
    It is always the error - power calibration error when I am burning a 700MB
    with HD burn (tried SmartBuy, Sony and Imation, all cannot work)
    I done testing with the Nero provided and latest Nero 6.3.0.3.
    Actually I fancy this drive over TDK AID 880NA because of HD-Burn!
    Can someone please share how to burn with HD-Burn? Any special medium?
    MSI, can you please do something? Reply us with a FAQ or something helpful?
    I think this is the worse MSI product that I have bought.  
    I used to be a fan of MSI, my whole PC consists of MSI parts.
    Now my impression of MSI products changed big time.
    How to make this HD Burn work?! Anyone got any comment or information?
    Please share???  

    I have the MSI DVD DR-8A and i've already burnt over a dozen HD-burn CDs without any problem  
    My only road block was to find how to use it with nero (it is presented as a different type of disk), but after i read nero doc and chose the right option, it has been flying. I'll report on my media later (i dont have them here).
    Edit: I've used
     - FujiFilm CDR 80minutes 24x
     - Memorex CDR 80 mins 48x
    No problem with either, burnt at the maximum 24x HD burn speed.
    My only gripe with HD burn is that it does not allow any overburning. Not a bit over the 1400Meg limit. not a big problem, though.
    Also, be cautious on WHAT you burn. CD are not a very good archival method. They can degrade quite fast and i would bet that HD-burn, being more precise, is more sensitive to those degradations too.

  • How can I move/copy my windows Itune libraries to my MAC itunes?

    How can i COPY/MOVE my
    windows itunes libraries to my macbook iatunes library?

    Type "move itunes library from pc to mac" into the google search bar.

Maybe you are looking for