Telephone numbers in an excel spread sheet not recognized by Adobe Acrobat DC

Prior to my upgrade to Adobe Acrobat DC on my iPhone, phone numbers in an excel sheet spread is recognized by Acrobat Reader as such i.e. you would touch and hold the number, a "pop up" seems so the opportunity to 'CALL' or 'SEND a MESSAGE '. This feature does work in format Adobe Acrobat, DC, why not?

Hello

Acrobat DC IOS uses the iOS Apple SDK to display the overview of the documents not PDF (e.g. Word, Excel, PowerPoint).

It looks like a bug Apple for failing to detect automatically phone numbers only in Excel spreadsheets.

I opened my Excel (.xls and .xlsx), Word (.docx), PowerPoint (.pptx) documents with numbers from phone to Acrobat DC for iOS.   The phone numbers in Word and PowerPoint documents have been properly recognized as such.  In the preview, plain text is transformed into text underlined in blue.  When you press and hold on the phone number, you will get the options you have mentioned.

On the other hand, the phone numbers in the Excel spreadsheet were not recognized in the preview.  In Excel, I used the cell Format > number > special > phone number with the United States (in English) as a language.  But it has not fixed the problem.

It turns out that Apple Mail Preview (on iOS 8) has the same problem.  You can also send your Excel spreadsheet to yourself and open it in Apple Mail on your iPhone to confirm that this is a bug to Apple.

You can post a question in the Apple Support

iPhone - Mail, Contacts, calendars - Apple Support

or use Word documents for automatic detection of phone numbers.

Sorry for the inconvenience.

Tags: Adobe Document

Similar Questions

  • R - SQUARE is caluclating hurt when I did the math in the Excel spread sheet

    Hi all

    Any help is appreciated

    I have a query that calculates the R_square for all 3 lines A

    When I do the calculation of request for the 3 first lines is the correct calculation

    Following lines set calculates wrong

    I checked the calculation using the formula Rsquare Excel spread sheet
    SELECT a.*,
           REGR_R2 (average, prof) OVER (ORDER BY rn
                                         ROWS BETWEEN CASE WHEN MOD (rn, 3) = 0
                                                                THEN 3
                                                           WHEN rn_desc = 1
                                                                THEN  MOD (rn, 3)
                                                           ELSE  0
                                                      END  PRECEDING
                                               AND CURRENT ROW) AS r_square 
    FROM   (select b.*,
                   row_number() over (order by b.a) rn,
                   row_number() over (order by b.a desc) rn_desc
            from   tableaa b
           ) a
    ORDER BY  a.a;
    1     A     BEG     END     PROF     AVERAGE     REGION     RN     RN_DESC     R_SQUARE     Excel Formula(
    2     1     0     0.1     159     159     1     1     14          
    3     2     0.1     0.2     159     168     1     2     13          
    4     3     0.2     0.3     179     159     1     3     12     0.25          0.25        =RSQ(E2:E4,D2:D4)
    5     4     0.1     0.2     250     300     1     4     11          
    6     5     0.2     0.3     320     250     1     5     10          
    7     6     0.3     0.4     250     380     1     6     9     0.164520715     0.627906977 ===RSQ(E5:E7,D5:D7)
    8     7     0.2     0.3     388     379     2     7     8          
    9     8     0.3     0.4     379     388     2     8     7          
    10     9     0.4     0.5     388     400     2     9     6     0.218256852     0.006756757 ==RSQ(E8:E10,D8:D10)
    11     10     1.5     0.6     499     500     2     10     5          
    12     11     0.5     0.6     420     448     2     11     4          
    13     12     0.6     0.7     520     530     1     12     3     0.973538061     0.971560719 =RSQ(E11:E13,D11:D13)
    14     13     0.7     0.8     540     550     1     13     2          
    15     14     0.9     1     560     570     1     14     1     1          1           =RSQ(E13:E15,D13:D15)
    When i do seperatly i am getting correct value what excel is showing
    
    select REGR_R2 (average, prof) from tableaa
    where a in (1,2,3)
    
    REGR_R2(AVERAGE,PROF)
    0.25
    
    
    select REGR_R2 (average, prof) from tableaa
    where a in (4,5,6)
    
    REGR_R2(AVERAGE,PROF)
    0.627906976744186
    create table TABLEAA
    (
      A       NUMBER,
      BEG     NUMBER,
      END     NUMBER,
      PROF    NUMBER,
      AVERAGE NUMBER,
      REGION  NUMBER
    )
    ;
    
    prompt Loading TABLEAA...
    
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (1, 0, .1, 159, 159, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (2, .1, .2, 159, 168, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (3, .2, .3, 179, 159, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (4, .1, .2, 250, 300, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (5, .2, .3, 320, 250, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (6, .3, .4, 250, 380, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (7, .2, .3, 388, 379, 2);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (8, .3, .4, 379, 388, 2);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (9, .4, .5, 388, 400, 2);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (10, 1.5, .6, 499, 500, 2);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (11, .5, .6, 420, 448, 2);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (12, .6, .7, 520, 530, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (13, .7, .8, 540, 550, 1);
    insert into TABLEAA (A, BEG, END, PROF, AVERAGE, REGION)
    values (14, .9, 1, 560, 570, 1);
    commit;
    Published by: user1849 on 22 Sep, 2009 11:59

    Published by: user1849 on 22 Sep, 2009 12:00

    Hello

    "The LINES BETWEEN PREVIOUS AND CURRENT LINE x" means that you do the math on a window containing x + 1 lines (previous lines plus 1 x current rank).
    Most desired window is 3 rows, so the largest x should be 2.
    Change the 3 literal returned by the expression BOX for 2:

    SELECT a.*,
           REGR_R2 (average, prof) OVER (ORDER BY rn
                                         ROWS BETWEEN CASE WHEN MOD (rn, 3) = 0
                                                                THEN 2          -- Not 3
                                                           WHEN rn_desc = 1
                                                                THEN  MOD (rn, 3)
                                                           ELSE  0
                                                      END  PRECEDING
                                               AND CURRENT ROW) AS r_square
    FROM   (select b.*,
                   row_number() over (order by b.a) rn,
                   row_number() over (order by b.a desc) rn_desc
            from   tableaa b
           ) a
    ORDER BY  a.a;
    

    The above call to REGR_R2 looks like something I wrote. If I told you to say 'THEN 3', I apologize.

  • Reinstallation on my new computer, but can not activate my Adobe Acrobat 7.0 Pro - 24:24 error code

    Reinstallation on my new computer, but can not activate my Adobe Acrobat 7.0 Pro - 24:24 error code

    You need a special version of Acrobat 7.   See the following...

    CS2: Error: unavailable activation server | CS2, Acrobat 7, hearing 3 -.

    l http://helpx.adobe.com/x-productkb/Policy-Pricing/Creative-Suite-2-activation-end-Life.htm

    https://helpx.Adobe.com/Creative-Suite/KB/CS2-product-downloads.html

  • Reader Adobe XI do not upgrade to Adobe Acrobat DC

    I see that my Player Adobe XI (11.0.10) is not updated to Adobe Acrobat DC.

    Is it because they are different channels?

    Should I switch to Adobe Acrobat DC? If Yes, what are the additional features does it offer over my Adobe reader XI course.

    Hi Bunny,

    I want to tell you about two software. Adobe Reader is software to view the files. It is a free software from Adobe.

    If you want to upgrade to Adobe Reader the domain controller (which is different from DC Acrobat), you can uninstall the current version of Acrobat XI and install the newest Adobe Reader DC.

    And Yes, they are different software that's the reason why you can't move from Adobe Reader XI to Acrobat DC.

    Whereas Acrobat (whether any version, the last DC Acrobat or any previous version) is a paid software from Adobe. Acrobat is required to view and edit PDFS '.

    It is available in two flavors, I .e DC Acrobat pro and Acrobat DC standard. You could opt for the monthly Acrobat DC or opt for an annual.

    Here is a list of some of the new features in Acrobat DC and price policy.

    Plans and prices: compare plans | Adobe Acrobat DC

    You can return the following document for more information about Acrobat DC.

    https://helpx.Adobe.com/Acrobat/FAQ.html

    Concerning

    Sukrit diallo

  • No Excel spread sheet

    My Pc has been recently reset to a State factory via the PC Comet helpline (they take control of my PC) I copied all my worksheets on a memory stick before they cleaned the PC, everything works fine now.

    Went to open or locate excel and its not showing anywhere on the ads.

    The PC is a little more than 2 years, Vista home Premium 32-bit.
    Excel needs to be on here what went wrong? It is imperative that I get this installed on the PC that there is important information about some of the spreadsheets, I need to recover quickly.

    Help please.

    Contact the one that you bought Office software (Excel) from and ask them to send you a recovery disc for it.

    The desktop Suite comes for free with the Vista operating system. It must be purchased separately.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/default.aspx/KB/326246

    'How to replace Microsoft software or hardware, order service packs and upgrades, and replace product manuals'

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    For questions of office:

    Office:

    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx

    Office newsgroups

    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Office.misc&lang=en&CR=us

    Discussions of general issues of the Office.

    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Excel.misc&lang=en&CR=us

    Discussions in Excel General questions.

    They will help you with your office questions when repost you in the Office discussion groups above.

    See you soon.

    Mick Murphy - Microsoft partner

  • Photosmart HP 7510: Scanned Documents not previewed in Adobe Acrobat

    Until recently, when I scanned a document Adobe Acrobat open with the scanned document. But he started at the time of opening to the top of the preview in Adobe Reader. I clicked on 'default value' now, it does not open any adobe program.

    I went to the 'HP printer Assistant' and 'Document to email' and 'Document to File' both have the box "Preview Scan" checked.

    How can I get the machine to open Adobe Acrobat with the scanned document as he has already done

    Hello cfmutton911,

    Welcome to the HP Forums.

    I see that you experience a problem when you attempt to preview Adobe.

    I've seen similar problems with Adobe in the past.  I suggest you check the Adobe website to see if updates have been added.  If you did the Windows updates recently, you can try to do a restore of the system on your computer.

    Here is the link to the site of Adobe support.

    Thanks for your time.

    See you soon,.

  • ACTIVATION CODE IS NOT RECOGNIZED FOR ADOBE PHOTOSHOP ELEMENTS 14 AND 14 ITEMS FIRST

    I have entered it correctly the activation code for Adobe Photoshop elements 14 and 14 items first and get a message that the activation code is not correct and not recognized

    Contact adobe during the time pst support by clicking here and, when available, click on "still need help," https://helpx.adobe.com/contact.html

  • srfdlf.dll not found in adobe acrobat

    Help! What should I do when I get this error? tried to re-setup, restart the computer, remove older versions of the Adobe Acrobat software.

    It is not part of Acrobat. Not sure whether "real" or malware - a lot of sites to research risk have it.

    Where do you get the error, and what is the message?

  • Photoshop CS6 PDF files does not open in Adobe Acrobat

    Photoshop CS6. Windows 8

    I used Photoshop to create smaller PDF files. I've never had a problem with CS6 until last week. When I click on save to PDF dialog box "error" is displayed. However, when I try to open the new file in Adobe Acrobat reader, a dialog box says 'insufficient memory '. In addition, in my windows Explorer, the file appears as just a white box in the sidebar "Preview".

    What I'm not doing correctly all of a sudden? I've been sticking with the same preferences and save the settings since I started using Photoshop CS5.

    You have updated Acrobat / Adobe Reader recently? If so, this update may have introduced a compatibility problem in shared libraries across the world of the Adobe PDF. Either the update never passed by correctly and you now have a sloppy Acrobat. Do other sources open PDF files? If this isn't the case, it would be a strong suspicion that you may need to reinstall / repair Acrobat. It is also possible that you have probably enabled sandbox in Acrobat security preferences (or did an update) and so Acrobat refuses to open some files, if it is unable to determine their origins. One more thing that comes to mind: have you tried saving the file twice in a row under the same name? This kind of thing sometimes happens too fast (on SSD drives and others) and is not update Windows file security information in time (or your virus scanner cannot keep up) and the resulting file is useless. Crush them with the same file would then give the correct results.

    Mylenium

  • Scan to PDF not available in Adobe Acrobat 7.0 Standard

    Hello

    I have Adobe Acrobat 7.0 Standard installed on a PC with Windows XP Pro. The PDF scanning function is not available anywhere in the program, but must be as far as I've learned. Anyone know what to do? Thank you.

    You have a scanner attached? It works in graphics standard packages? Is it set up with a Twain interface? I have Pro and it's maybe a feature that is not in AA7 Std - can't answer that one, but the following link gives advice you need Pro: http://www.adobe.com/products/acrobat/pdfs/acro7_matrix.pdf

  • Missing ranks some excell spread sheet

    Just tried to use our HP ENVY impressions 4500 well with Microsoft documents, but what an excell sheet printing spread print all other lines line sometimes all 3 rows lines. Prints all the words, but not the lines?

    Hello @GorgeousAlan and welcome to the Forums of HP, I hope you enjoy your experience!

    I see that you are searching in printing issues.  I'd like to try and help, but I need some information first. I'm a link a few HP Support documents below that will show you how to find what operating system you are using. In addition, if you are using Windows, please indicate if your operating system is 32-bit or 64-bit. With this information we can provide you with accurate information.

    Mac OS X: how to find which Mac OS X Version is on my computer?
    Operating system Windows am I running?
    Is the Version of Windows on my computer 32-bit or 64-bit?

    Please let me know what you find.  Thanks for posting on the HP Forums!

  • Export the names of each article to an Excel spread sheet or any other form button

    Is there a way to export a list of all the button names in each section of an Excel sheet to spread or another form? If anyone knows of a script that does that it would work to.

    We do not want to have to go to each button in each article and each copy and past to an Excel doc.

    Try the forum script InDesign. Even if you can get the names in an InDesign table, which could easily be copy and paste to Excel.

    Bob

  • Excel file is not recognized by Matlab

    Hello

    I'm saving my data (with headers) using the function 'Write to a spreadsheet file' in file .xls. Windows will recognize such as Excel and it opened ok. But when I'm reading in Matlab by function "xlsread", I get an error "not in the Microsoft Excel Format".

    Where I'm wrong?
    (I have attached my code: it's the creative header Subvi; digital data is added in additional Subvi by using the function 'Write to a spreadsheet file' even)

    Hello Dvorkind,

    I thank very you much for your message on our forum. There is a difference between a file delimited by tabs and an excel file, and I think that it is the source of the problem, that we are facing here. Please consult the following KB .

    Here, they speak the tool report generation (you can try assessment to see if this solution will solve the problem). Alternatively, you can try to Excel by using the possibilities of activeX in Labview.

    I hope this will help you in addition,

    Best regards

  • How to convert an Excel formula to a custom form Adobe Acrobat 9 calculation Script?

    Hello

    I'm not familiar whether with Javascript and need help to convert the Excel formula below so that I can enter a custom in the form of Adobe's PDF calculation Script. Here's the formula:

    (= If (E15 < 25.01,9.95,IF(E15 < 50.01,11.95,IF(E15 < 75.01,13.95,IF(E15 < 100.01,16.95,IF(E15 < 150,01, 19.95, IF (E15 < 200.01,24.95,IF(E15 > 200.00, E15 * 0.125)))

    Where 'E15' will be the text field called "Subtotal" in my Adobe's PDF form.

    Thanks for any help you can provide!

    Fortunately, JavaScript has the "switch" statement, so nested If statements can be avoided.

    var E15 = this.getField("Subtotal").value;

    {Switch (true)}

    case (E15< 25.01)="">

    Event.Value = 9.95;

    break;

    case (E15< 50.01)="">

    Event.Value = 11.95;

    break;

    case (E15< 75.01)="">

    Event.Value = 13.95. 13

    break;

    case (E15< 100.01)="">

    Event.Value = 16.95;

    break;

    case (E15< 150.01)="">

    Event.Value = 19.95;

    break;

    case (E15< 200.01)="">

    Event.Value = 24.95;

    break;

    case (E15 > 200):

    E15 = Event.Value * 0.125;

    break;

    by default:

    Event.Value = "";

    break;

    } / / end of switch.

  • thumbnails not showing in adobe acrobat pro 10 64-bit windows

    Photos of ahure Pro XI files do not appear in Windows Explorer - 10 64-bit Windows

    Have you tried going into display > show/hide > components of Navigation > Page thumbnails?

Maybe you are looking for

  • iOS update will not start - check says no WiFi internet - works

    My 5 received an iPhone upgrade to iOS 9.3.  It goes to the screen install now, demand for my access code. Provides terms and Conditions.  I agree. A "check for update...". "is displayed.  Then an iOS error 9.3 failure of verification because you are

  • DesignJet T770: DesignJet T770 will not print in color

    After you move a DesignJet T770 44 inch queue from a Windows 2003 server to a Server Windows 2012 R2 the T770 will not print in color. The general tab on the properties T770 printer States ' color: No. '.  Yet once on the printer properties on the ta

  • T430s - BSOD (of driver power state failure). Please help identify the driver

    I meet regularly with BSOD on my T430s / Win7 when switching mode standby (Fn + F4). The error message is driver_power_state_failure. This happens almost every day. Driving me crazy! I know it's a common problem (I also had with a former T500, but no

  • Masking of individual recipient addresses

    Using Windows Mail in Vista, I want to send an email to a large number of recipients in a group without revealing each individual email address. Essentially, I would like to create a group name and have only this show.

  • CUCM centralized model Design

    Dear, I am currently designing a centralized solution for all phones to those branches 20 branches will be saved to the central HQ CUCM, each branch also has H323 GW connect to the PSTN and I need to know a lot of design perspectives A: A1: the use o