Comments on: How to change date format in Excel and create custom formatting

The first part of our tutorial focuses of formatting dates in Excel and explains how to set the default date and time formats, how to change date format in Excel, how to create custom date formatting, and convert your dates to another locale. Continue reading

Comments page 10. Total comments: 940

  1. Hi I have date format as ( sun 24/1/2021) I need to use a formula to transform it to DD/MM/YY

    Thank you for your support

    1. Hello!
      If I understand your task correctly, the following formula should work for you:

      =DATE(RIGHT(REPLACE(A1,1,SEARCH(" ",A1,1),""),4),MID(REPLACE(A1,1,SEARCH(" ",A1,1),""), SEARCH("/",REPLACE(A1,1,SEARCH(" ",A1,1),""),1)+1, SEARCH("/",REPLACE(A1,1,SEARCH(" ",A1,1),""),4)- SEARCH("/",REPLACE(A1,1,SEARCH(" ",A1,1),""),1)-1), LEFT(REPLACE(A1,1,SEARCH(" ",A1,1),""), SEARCH("/",REPLACE(A1,1,SEARCH(" ",A1,1),""),1)-1))

      Hope this is what you need.

  2. I have an Excel file with mixed date formats in the Date column. Does anyone have a suggestion for a way to flip all the dates to the same format? I need to filter the entire sheet using the date and remove any entries that are more than 24 months old.

    Thank you,

    Here's a sample -

    27/08/2020 8:07:00 AM
    2018-01-11
    30/12/2020 1:34:00 PM
    14/09/2020 12:54:00 PM
    30/10/2020 10:09:00 AM
    22/12/2018 7:20:00 AM
    2020-03-11

    1. Hello!
      If all your data is in date format, select the column and set the format you want.
      Pay attention to the following paragraph of the article above — How to change date format in Excel.
      If the date is written as text (for example 14/09/2020 12:54:00 PM), then use the formula

      =--REPLACE(REPLACE(A1,1,2,MID(A1,4,2)),4,2,LEFT(A1,2))

      I hope it’ll be helpful.

  3. Hello!

    OBJECTIVE:

    My objective is to create a custom number format that can work for phone numbers AND dates inside the same cell.

    EXAMPLE:

    (214) 999-0000 "HOUSE NOTES: PHONE NOTES: (214) 295-0021 (469) 258-5800 (214) 579-5707
    (469) 585-3485 (214) 475-6990 1/14/21 example of phone note 214.395.7623 1/14/21
    (214) 999-0000 example of phone note 469.363.3039 1/14/21 example of phone note MAIL
    LETTER NOTES:"

    EXPLANATION

    On the leftmost "cell", I've applied the following custom number format: (###) ###-####

    However, this format is not applicable on the rightmost cell with text because aside from having phone numbers, it also includes dates and words.

    QUESTION:

    What formula can be used to have all phone numbers in this format: (###) ###-### and also the date in this format: mm/dd/yy, while keeping text as is? (In this order as well: Phone, date, note)

    Any help is greatly valued!! Thank you!

    1. Hi,
      The information you provided is not enough to understand your case and give you any advice.
      You have recorded a long text. What is written in the left cell? What is written in the right cell? What dates and words does it include? How many cells does your example occupy? A detailed description is required.

  4. Hi, I would like to put it as end-Dec-2020. I already change my date format to Mmm-yyyy. How can I add the word 'End' at the front?

    1. Hello!
      You can use custom date format

      "End-"Mmmm-yy

      I hope this will help, otherwise please do not hesitate to contact me anytime.

  5. Hey I have the following issue after converting a csv into regular excel: some of the values (that are supposed to be amounts) , are there as dates, example 11.31 has been converted into Nov 31 BUT if I change the format to number of text then I get the 11628. What can I do?

    1. Hello!
      Unfortunately, without seeing your data it is difficult to give you any advice. You can learn more about Convert CSV to Excel in this article on our blog.
      I hope my advice will help you solve your task.

  6. Would it be possible to include a symbol before and after the date? Example: (01 January 2021). How do I format it to include and open and close parenthesis before and after the date?

    Thank you

    1. Hi Jay,

      Simply include the parentheses in the format code like this: (dd mmmm yyyy)

  7. i need to change the date and make it appear in dd / mm / yyyy form
    For a list of different dates
    What formula can be used to do this?
    July 18, 2015
    November 1, 2000
    etc.

  8. Hi, I'm working with a one drive spreadsheet that is auto generated from a google doc. One of the columns should show 'number of days' so I'd be expecting to see numbers in this column, however what I am seeing is dates. Some of these are post 1900 and I understand from your great description how to convert these to numbers but a lot are showing as pre 1900 e.g. 12/30/1899. Are these just zero values?

  9. Thank you very much
    I had to switch to another computer after the old one kinda died after 10 years. I had Excel 2003.
    When I got Excel 2010 all dates in all excell docs were US and single digit months.
    I got the terrible 2/9/2018 and could not convert is to my beloved format 09/02/2018. Thanks to you It was easy. Just change the language from English US to English UK.

    Thanks

  10. What is the @ symbol for. It is shown in the screen shot in the "Creating a custom date format in Excel" section, and I see it in the Excel Format Cells dialog on my Windows computer, but I can't seem to find out what it represents. Can you tell me?

    1. Hi,
      The @ symbol specifies where the text entered in the cell should appear.
      Ecample —

      "Income is "@

      I hope it’ll be helpful.

  11. I am entering a date of 11/12/2020 in a cell. I am currently using custom format to display the date as 12-Nov Thu. I would like to display the date as 12-Nov Th. Is there a way to show this display with only the first two letters of the day?

    1. Hello!
      This format is not available in Excel. However, you can convert this date to text and remove the last letter.

      =LEFT(E1,LEN(E1)-1)

      I hope my advice will help you solve your task.

  12. How can I change date in this format "01st Jan 2021" to "01-01-2021"?

    1. Hello!
      The information you provided is not enough to understand your case and give you any advice. Please describe your problem in more detail.
      Is your date written in text or in a date format?

  13. Am going to need some help but it’s ok

  14. Hello , i have for example 19260101 this is first date of 1926 actually, But it is written just as general numbers, i need to fix it to date and 1926/01( yyyyy/month) , how can i fix it ?

    1. Hello!
      To convert your value to a date, use the formula

      =DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2))

      Use custom date format

      yyyy/mm

      Hope this is what you need.

  15. Hello Alex,

    I need to help-

    Example - i have date format in D cell - 15-JUL-20 and i want a formula to covert date to numberi.e 15

  16. Hi, need help with converting these date: 11/23/2020 12:00:00 AM to 11/23/2020 and subtract by 7:00:00. My formula =IF(Z3="","",DATE(YEAR(Z3-"7:00:00"),MONTH(Z3-"7:00:00"),DAY(Z3-"7:00:00"))) doesn't work. Yet the formula works if the date is in 24hr format like: 11/23/2020 00:00:00. I already tried changing the DATE formats in control panel, customized the formats in excel to dd/mm/yyy hh:mm:ss but seems to not work at all.

    1. Hello!
      To subtract a number of hours, minutes and seconds from a date, use the formula

      =D1-TIME(7,0,0)

      Subtract 7 hours.

  17. Hello Alexander! Cannot get my head around this one. Didn't find an answer

    I have a date format

    11.11.2020 11:09:18

    I need it to be exactly

    Nov 11th, 2020 , 11:09 AM

    The main problem is with ending after date: 1st, 2nd, 3rd, 4th etc.

    Please help

    1. Hello!
      The formula below will do the trick for you:

      =CONCATENATE(TEXT(D2,"mmm")," ",DAY(D2)&LOOKUP(DAY(D2),{1,"st";2,"nd";3,"rd";4,"th";21,"st";22,"nd";23,"rd";24,"th";31,"st"}),", ",TEXT(D2," yyyy, hh:mm AM/PM"))

      Hope this is what you need.

  18. Hello, I am trying to change the date in dd/mm/yyyy format from d/m/yyyy ... but it is not working as it is reading the text incorrectly, as if it is 1/9/2020 (1/Sept./2020) but it reads it as 1/Jan/2020.. Please help!

    1. Hello!
      Sorry, it's not quite clear what you are trying to achieve. What is the date in the cell? What format are you using? What result do you want to get?

  19. I am downloading a report and my dates are coming up 16/01/2020 (so dd/mm/yyyy); however, the cell is formated as GENERAL and won't sort via the date.

    I have tried highlighting and formating the cells to Date - English (Canada) and picked dd/mm/yyyy; however, when I try to sort it is putting all the 01/??/???? together, then the 02/??/???? together.

    I have tried the Text to Columns and it isn't working - not all of the cells are changing over to date (if I scroll through some are still saying General).

    Is there any way to fix this issue??? Of note - I am downloading the report from ADP payroll provider.

    Thanks very much.

    Geri

  20. Thanks for reply . I already tried this and it does not work and makes no change on dates in column.

    1. Hello!
      This custom date format works for me. What date format do you use on Windows? Give more an example of the source data and the expected result.
      It’ll help me understand it better and find a solution for you.
      If your data is written as text, perhaps a recommendation on how to convert text to date will help you.

  21. Hi,

    I have date in this format September 9, 2019 in one of the excel columns. I want to change it to 9/09/2019.. I tried to apply the format from the formats provided in excel, but it did not work. Any help will be highly appreciated.

  22. How to change below mentioned date in excel with DD/MM/YYYY?

    2019-02-02 13:45:20

    Pls help Urgently

    1. Hello!
      If I understand your task correctly, the following formula should work for you:

      =DATE(LEFT(D1,4),MID(D1,6,2),MID(D1,9,2))

      I don't know which date formal you are using. Therefore, you may find it useful to know how to convert text to date.

  23. I have a report with date, text & time with timezone in a cell and the requirement is to sort this in ascending order. I have tried to use delimiter, concatenate and also convert text to date but the "at" in between date & time is giving me issues and i am having a tough time sorting it. Can you please help

    Example:
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time
    Sunday, April 19, 2020 at 10:18:36 PM China Standard Time
    Saturday, April 18, 2020 at 3:23:36 AM China Standard Time
    Friday, April 10, 2020 at 1:23:36 AM China Standard Time
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time
    Sunday, April 19, 2020 at 10:18:36 PM China Standard Time
    Saturday, April 18, 2020 at 3:23:36 AM China Standard Time
    Friday, April 10, 2020 at 1:23:36 AM China Standard Time
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time
    Sunday, April 19, 2020 at 10:18:36 PM China Standard Time
    Saturday, April 18, 2020 at 3:23:36 AM China Standard Time
    Friday, April 10, 2020 at 1:23:36 AM China Standard Time
    Thursday, April 16, 2020 at 6:23:36 PM China Standard Time

    1. Hello!
      I’m sorry but your task is not entirely clear to me. How do you want to sort the column? Do you have text written in the cells? If you need to sort by date and time, you need to extract them from the text into another column. And sort by this column.

  24. Formula for following required :
    Todays date is September 01, 2020.
    Part A
    A tool is calibrated on Jan 01, 2020.
    It has a 6 month calibration cycle so it is overdue by 3 months
    How to show actual calibration due date and -3 month overdue date in 2 separate cells.
    Part B
    As above, but tool has calibration cycle of 24 months, therefore has 18 months remaining till due.

    I think one formula would work for both scenarios.

    Example :
    Cell A Cell B Cell C Cell D
    Calibration done cycle (m) Due Status
    Jan 01 2020 6 July 01 2020 -3
    Jan 01 2020 24 Jan 01 2022 18

    Thank You in advance for any help.

  25. Hi My worksheet is split into 12 equal sections representing the 12 months of the year.
    I started gathering data in July and I’m trying to work out how to automatically have the word August in the second section and September in the 3rd section etc. without having to type it in manually.
    Thanks

    1. Hello!
      I’m sorry but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. Give an example of the source data and the expected result.
      It’ll help me understand it better and find a solution for you

  26. Hello

    I have this format on cell A1: Sep 22, 2020 03:09:09 AM
    What formula do i need to us to change it to: 09/22/2020 and remove the time in cell A2

    thank you in advance

    1. Hello!
      If I understand your task correctly, the following formula should work for you:

      =DATE(MID(A1,FIND("~",SUBSTITUTE(A1," ","~",2),1)+1,4), VLOOKUP(LEFT(A1,3), {"JAN",1;"FEB",2;"MAR",3;"APR",4;"May",5;"JUN",6;"JUL",7;"AUG",8; "Sep",9;"OCT",10;"NOV",11;"DEC",12},2,0), MID(A1,FIND(" ",A1,1)+1,2))

      I hope it’ll be helpful.

      1. That's brilliant thank you! Saved me hours of work.

  27. I do not know what I am doing wrong. I have imported dates into Excel as text values, however, using neither Excel's DATEVALUE function nor Text to Columns feature seems to work.

    In my spreadsheet, the dates are in column F and have the format "m/d/yyyy h:mm:ss AM/PM"

    For example, cell F2 contains the following text: ‎9‎/‎30‎/‎2020 ‎12‎:‎00‎:‎00‎ ‎AM

    I am able to use TRIM(LEFT(F2,FIND(" ",F2)-1)) to retrieve the date portion of the text, but when I attempt to use DATEVALUE(TRIM(LEFT(F2,FIND(" ",F2)-1))) to convert the text value to a date value, I receive a #VALUE! error.

    Please help.

    1. Hello!
      Your formula is written correctly and should work. If you imported dates from another program, there may be various non-printable characters in the text. To check this, try manually entering the same information into the cell 9/30/2020 12:00:00 AM
      You can also try using this formula

      =DATE(--MID(F2,FIND("~",SUBSTITUTE(F2,"/","~",2),1)+1, FIND(" ",F2,1)-FIND("~",SUBSTITUTE(F2,"/","~",2),1)-1), --LEFT(F2, SEARCH("/",F2,1)-1), --MID(F2,FIND("~",SUBSTITUTE(F2,"/","~",1),1)+1, FIND("~",SUBSTITUTE(F2,"/","~",2),1)-FIND("~",SUBSTITUTE(F2,"/","~",1),1)-1))

      I hope it’ll be helpful.

  28. If I enter a date as 12/19/1922, my date columns are formatted to display, 19 Dec 1922. If I enter a date prior to 1900, however, the formatting will not change.
    Also, I need to calculate the age of a person and I use =datedif(xx,xx,"y"). But, again,. the calculation won't work for any date prior to 1900.
    Is there a fix for both the formatting issue and the calculation?
    Thanks in advance for your help.

    1. Hello!
      Excel does not work with dates before 1900. These dates are recorded as text. Therefore, it is not possible to apply the date format to them.
      To find the difference between dates before 1900, it is recommended to add 2000 years to each of them.
      You can use something like this:

      =DATEDIF(DATEVALUE(LEFT(A1,6)&(RIGHT(A1,4)+2000)),DATEVALUE(LEFT(A2,6)&(RIGHT(A2,4)+2000)),"y")

      If there is anything else I can help you with, please let me know.

  29. hello
    i want name and dob like devika 10/4/1996 but instead of date some numbers are appearing

    1. Hello!
      I’m sorry but your task is not entirely clear to me. Could you please describe it in more detail? What result do you want to get? Thank you!

  30. Sir, How to type date to date format (eg:2001.jan.1 to 2001.dec.31) in cell.

  31. HI everyone,
    I need help to convert my report dates showing as Thursday, April 4, 2019 5:46 PM to 04/04/2019. Need to simplify the data.
    Thanks in advance

  32. Hi,
    I need the following date format for some food products, in Canada

    Format for the Date is as follows: 08 JA 20
    January: JA
    February: FE
    March: MR
    April: AL
    May: MA
    June: JN
    July: JL
    August: AU
    September: SE
    October: OC
    November: NO
    December: DE

  33. I'd like to be able to add a comma in a time format...
    EXAMPLE: to hhave 1234:56 display as 1,234:56
    I haven't been able to find a solution in all of my searching. Certainly this is a possibility when working with thousands of hours -- like projects and company-based time cards.

    1. Hello Bill!
      Unfortunately, you cannot use time separators. You can convert the time to text and then insert any required separators.

  34. Hello.
    I have a question:
    25:04:01 it is my data that's format hh:mm:ss.
    I tried it to transport "hh" format. I used =Text(B2,"mm") but formula is not working that shows as like Month. How to transport this data to "hh" format that looks like 5,6hr etc.

  35. Hi,
    I am suffering from an issue in Excel. Hope somebody will help me to resolve.
    Every time when I type a date in excel, it always returns the date in dd-mmm format and not in dd-mmm-yy format. Say for ex - If want to type a date 1-Jan-2020, then when I type 1/1 it only returns 01-Jan and not 01-Jan-2020.
    Can somebody help.
    Thanks in advance.

  36. SIR,I HAD A PROBLEM IF I ENTER A DATE IN DATE COLUMN (170720)IS COVERTING TO THIS DATE(08-11-2668)SO WHAT FORMULA I WANT TO USE?AND I WANT A COLUMN IN WHICH I MANUALLY ENTER ONLY NUMBERS AND EXCEL SHOULD AUTOMATICALLY CONVERT TO DATE FORMAT, FOR EG. IF I TYPE 17072020 SHOULD BE CONVERTED TO 17/07/2020. THANK U

    1. Hello!
      Excel has date entry rules that you can read about here. You do not enter a date, but a number that indicates the day number starting in 1900. "IF I TYPE 17072020 SHOULD BE CONVERTED TO 17/07/2020" - this is only possible when using the VBA macro.

  37. Hi Alexander, thanks for your quick reply but I don't see "Data - Sort - by Data. Then I selected the "Sort anything that looks a number, as number" checkbox." If I use the ribbon Data menu or the main top Data menu all I get on my Excel 2019 for Mac is:
    Pls see photos 1 to 3:
    https://www.dropbox.com/s/wnntscvzgqhdi54/1.png
    https://www.dropbox.com/s/m4mtma8yhx7owsw/2.png
    https://www.dropbox.com/s/733br30qo99ti0u/3.png
    Are you on a different version?
    Cheers,

  38. Hi can someone pls help me with an non responsive date change / sort order issue before I throw my computer out the window?

    I've spent over half an hour trying to sort this excel file (link below) into the correct date order. Its back to front and has all the latest dates at the top of the file instead of the bottom. Why is it back to front with the newest yahoo finance data at the top when I web query Yahoo?

    Why does excel not recognise that I am changing the date format to DMY so I can put it in the correct order with oldest dates at the top???

    Column A dates are ompletely unresponsive no matter how many specialist help resources I watch. What am I missing??

    Thanks in advance.

      1. Hi Alexander, thanks, but I don't see my response to your help? My reply had 3x dropbox images showing that I don't have the menu with:
        "Data - Sort - by Data. Then I selected the "Sort anything that looks a number, as number" checkbox."
        I can't see my previous reply with those 3x dropbox images?

  39. Hi ...I want to display date in excel as 12/31/9999 00:00:00.000000, I tried to use custom format (mm/dd/yyyy hh:mm:ss.sssssss) but the result I am getting is 12/31/9999 00:00:00.00. Please help here.

  40. I want my dates to display in yyyymmdd format. I created it in custom but for 20200709 it returns with a value overflow (###### etc.) Is the format I want possible?

    1. Hello!
      You entered 20200709 in your cell. This is not a date, but a number. Enter the date correctly. How to enter the date in the cell - read here

      1. Thank you for the answer Mr. Trifuntov.
        Alright, than I asked the wrong question.
        I want to enter my dates according to this format: yyyymmdd (so, 20200709), without the usual slashes or hyphens (2020/07/09 or 2020-07-09) because it is easier.
        Is there a way to make excel interpret 20200709 as a date or is there a way to add an entry-format in Excel?

        1. Hello!
          You can enter a date in a cell without slashes and hyphens using the VBA macro. Or you can enter a number in another cell and then convert it in the cell you need to a date using Excel functions. You can read more about converting numbers to dates here.

          1. Thanks!
            This is exactly what I need. So simple, I should have been able to figure this out for myself!
            Sorry to have bothered you. :-)

  41. I want to covert 1421020800000 value in date please help me

  42. Dear sir
    here i got data like 07-05-20 1:58 is 5th july 2020 and next colum
    6/28/2020 8:25:27 PM june 28 2020 how to change by order..

    1. Hello!
      I’m sorry but your task is not entirely clear to me. Could you please describe it in more detail? Thank you!

  43. Hello Sir,
    I have a whole sheet of Excel Data. In that, there a couple of columns where the dates are shown in the format, for eg (10 Dec 1990). I want to change that to the format as 10-12-1990. I tried Format cells and it worked on 1 cell.
    Is it possible to apply it to the entire column at once?? Apply that formula to the entire column of the worksheet?? It might take me ages to change the date format in each and every cell.

    1. Hello Neha!
      Click on the column heading (letter). The entire column will be highlighted. After that, set the desired custom format in the same way as the format of one cell.

  44. Hello Team,
    Kudos on writing such a detailed and descriptive tutorial on this topic. It was really helpful.
    My question is regarding the topic "Creating a custom date format in Excel"
    I am able to create a custom format however it only remains in the Excel file I was working on.
    Is it possible to save that custom format so that its available as an option in any Excel file I work on? I just need this as an additional option and don't want to change the default date formats.
    Thanks.

    1. Hello Rajiv!
      You can save the workbook with your custom format as an Excel template. Then, based on this template, you will be able to create new files. Read about Excel templates in this guide.

  45. Hi!
    I want to change USA date format to UK date format in Excel. How can I do it? Please let me know it as soon as possible.
    Thanks.

  46. Hello, I'm looking for a rather unique situation with dates in excel and uploading the spreadsheet to a e-commerce website with valid information.

    I currently have a heap of information in a .xlsx file and all works well except for date formatting. I have =NOW() which returns today's date in 25/06/2020. But when I copy the page and paste the values into a .csv file for upload it converts it to 44007.7716459491.

    The other issue is the site will not accept 25/06/2020 as a valid date format but it will accept 25.06.2020.

    Is there an easy formula to produce 25.06.2020 as an auto date, then also create another auto date +30 days in the same 25.07.2020 format?

    Or will I have to create different cells generating the date(A1), month(A2) and year(A3) and then combine them in the cell like =A1&"."&B1&"."&C1 ?

  47. HI,
    I need to change the date time 6/18/2020 10:09:53 AM format to "Jun-20"
    I tried using format cells option but its not working.
    pls advise
    Thanks.

    1. Hello!
      It is not possible to change the date format so that it appears in the cell instead of June 18 June 20. For this, formulas are used. But to display “Jun-18” instead of “6/18/2020 10:09:53 AM”, use the custom date format “mmm-dd”

  48. I'm on the fence about this, while more customization is good, I have a feeling this is a "in-progress" update, it just feels incomplete and half-way there.
    We use badge layout for apps on design approvals (visual projects), so the image being displayed is important. Old layout "feels like" it had larger images,
    maybe because the images were cropped more loosely so it's easier to tell which project it was at quick glance. Now the image is cropped closer, making it
    harder to scan thru at quick glance. I find myself needing to click into the project more often than usual. Which makes the whole user experience less
    efficient.
    I have a couple suggestions that might make it work better:
    1. Increase the height of the window the cover image is being displayed.
    2. Let us to choose which image to be displayed as "cover" (like how Pinterest handles cover images of each board, was hoping for this for a long time)
    3. Let us adjust which part of the image to show and how tight or loose the crop is (with a fixed window, let us move the image around and maybe enlarge or
    shrink it to control what shows thru the window. Pinterest does a limited form of this, which is very useful in making the cover image relevant)
    4. Allow Cover Image to be ordered in different hierarchy (currently every element can be ordered differently except the Cover Image, it seems to be stuck
    in the 2nd spot, would like the option to set it on another spot in the layout. This one seems like an easy fix, since you guys allow that for every other
    element already)

  49. I need to calculate negative days for calculating dates. When I use this formula =DATEDIF(A1, TODAY(), "d") and A1 is 6/22/2020 but TODAY is 6/19/2020 the calculation cell shows #NUM! but I need it to show -3. Can't figure out the formula. Any help would be great.

    1. Hello Stan!
      You do not need to change the date format. You need to add the condition to the formula.
      If I understand your task correctly, the following formula should work for you:

      =IF(A1>TODAY(),-DATEDIF(TODAY(),A1,"d"),DATEDIF(A1, TODAY(),"d"))

      I hope my advice will help you solve your task.

  50. Hi, I have two different time with 12 hours format in two cells. The second cell required to covert for 24 hours format and the time difference between the two cell has to written in third cell.

    1. Hello!
      I did not understand what your problem is. To find the time difference between cells, the time format does not matter. The time format affects the appearance of the cell, not its value. Write an example of the source data and the result you want to get.

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)