+ Reply to Thread
Results 1 to 12 of 12

Delete the word "day" in the cell (cell design)

  1. #1
    Registered User
    Join Date
    06-23-2019
    Location
    Israel
    MS-Off Ver
    2016
    Posts
    5

    Delete the word "day" in the cell (cell design)

    hello,
    i need to design a workers shifts table and the manager asked me to delete the word "day" from the date.
    so i insert the date (lets say 13/07/2019) and in the "cell design" option i put "dd-mm ddd" so in the cell i see "13-07 day 6"
    how do i delete the word "day" becuase when i put "dd" it says the day in the month (13) and when i put "ddd" it says the day in the week with the word day (day 6), i want it to say only (6).
    if it metters im using excel in the hebrew languge, so its says (13/07 יום ו).
    thank you for the help
    Last edited by YosiSMS; 07-13-2019 at 02:48 AM.

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,914

    Re: Delete the word "day" in the cell (cell design)

    This format returns this for me:

    13-07 Sat

    dd-mm dd should give you 13-07 13
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Registered User
    Join Date
    06-23-2019
    Location
    Israel
    MS-Off Ver
    2016
    Posts
    5

    Re: Delete the word "day" in the cell (cell design)

    I think it happans to me beacuse im using hebrew. Is there an option to control the "cell desing" option so it will delete the word "day" or i have nothing to do about it?
    Last edited by AliGW; 07-13-2019 at 02:22 AM. Reason: Please don't quote unnecessarily!

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,914

    Re: Delete the word "day" in the cell (cell design)

    You can replicate what you want directly in the cell itself.

    Change the cell formatting back to general and then use this in the cell itself:

    =TEXT(TODAY(),"dd-mm")&" "&WEEKDAY(TODAY(),2)

  5. #5
    Registered User
    Join Date
    06-23-2019
    Location
    Israel
    MS-Off Ver
    2016
    Posts
    5

    Re: Delete the word "day" in the cell (cell design)

    WOW! thanks it helped me! i just have one problem. insted of the number "6" i need it to be the hebrew 6th letter.
    if ill translate it to english it will be: dd-mm day A, dd-mm day B, dd-mm day C, dd-mm day D, dd-mm day E, dd-mm day F, dd-mm day G.
    this is how we do it in israel.
    is there an option for that? without the "day"..

  6. #6
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,914

    Re: Delete the word "day" in the cell (cell design)

    Sorry - I can't help any further as I don't have the Hebrew version.

    Administrative Note:

    Please don't quote whole posts, especially when you are responding to the one immediately preceding your own - it's just clutter. It's OK to quote if you are responding to a post out of sequence, but limit quoted content to a few relevant lines that makes clear to whom and what you are responding. Thanks!

    For normal conversational replies, try using the QUICK REPLY box below.

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,914

    Re: Delete the word "day" in the cell (cell design)

    You could try this:

    =TEXT(TODAY(),"dd-mm")&" "&CHOOSE(WEEKDAY(TODAY(),2),"A","B","C","D","E","F","G")

  8. #8
    Registered User
    Join Date
    06-23-2019
    Location
    Israel
    MS-Off Ver
    2016
    Posts
    5

    Re: Delete the word "day" in the cell (cell design)

    YES!!!!!!!!! THANK YOU!!!!!!!
    one lest question, if i want it to be another date. lets say 1/8/2019. where do I change that? and if i do change it, if i drag the cell down do the date change (one cell down will be 2/8/2019 and so on)?

  9. #9
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,914

    Re: Delete the word "day" in the cell (cell design)

    Try this:

    =TEXT(DATE(2019,8,1)+ROWS(A$1:A1)-1,"dd-mm")&" "&CHOOSE(WEEKDAY(DATE(2019,8,1)+ROWS(A$1:A1)-1,2),"A","B","C","D","E","F","G")

    You have to set the date in both places in the formula, but then dragging it down increments the date.

  10. #10
    Registered User
    Join Date
    06-23-2019
    Location
    Israel
    MS-Off Ver
    2016
    Posts
    5

    Re: Delete the word "day" in the cell (cell design)

    thats it! its perfect. thank you very much!!!

  11. #11
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,914

    Re: Delete the word "day" in the cell (cell design)

    No worries.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  12. #12
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,914

    Re: Delete the word "day" in the cell (cell design)

    By the way, if you want to type the start date into a cell (e.g. 01/08/2019 in C1), you can reference that instead of messing with the formula:

    =TEXT(DATE(YEAR(C$1),MONTH(C$1),DAY(C$1))+ROWS(A$1:A1)-1,"dd-mm")&" "&CHOOSE(WEEKDAY(DATE(YEAR(C$1),MONTH(C$1),DAY(C$1))+ROWS(A$1:A1)-1,2),"A","B","C","D","E","F","G")
    Last edited by AliGW; 07-13-2019 at 02:57 AM. Reason: Absolute cell markers added.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Delete row if cell contains the word "Warning"
    By CC268 in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 01-13-2017, 09:07 AM
  2. [SOLVED] Delete a cell and shift left if it contains the word "school"
    By clundqui in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 09-08-2016, 03:27 PM
  3. [SOLVED] Need to Find All Cells Containing "Word" and Replace With "Other Word" from Cell Below?
    By notsmart in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 03-05-2016, 09:00 AM
  4. [SOLVED] If cell equals "CR" then make cell to left negative and delete "CR".......
    By pasqualebaldi in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 01-14-2016, 07:51 PM
  5. [SOLVED] Formula Needed to fill multiple cells with "No" when the word "No" is entered into a cell
    By excelteam777 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-09-2013, 05:36 PM
  6. [SOLVED] Macro to delete entire row if cell contains the word "total" or "Total"
    By theatricalveggie in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-10-2011, 12:38 PM
  7. Replies: 2
    Last Post: 02-27-2006, 04:45 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1