Blog Stats
- 2,382,777 hits
- Follow wmfexcel on WordPress.com
Search wmfexcel
Want Google to translate this page?
-
Recent Posts
Top Posts & Pages
- How to sort bar chart in descending order?
- Date Formats - A trick to format date with "st", "nd", "rd", "th"
- When unhide row doesn't work...
- Show number in thousand (k) or in million (M) by using custom format
- Filter a list of items from a long long list
- Perform VLOOKUP with 2 lookup values
- Insert a text string into a specific position of another text string in #Excel
- Open an embedded Excel file during a slide show in PowerPoint?
- Repeat all item labels in Pivot Table (aka Fill in the blanks please)
- Dropdown calendar in Excel
My YouTube Channel
My Facebook page
- My Tweets
Monthly Archives: November 2014
Combine contents in a range of cells into a single cell, with no VBA nor formula.
Well, the first thing in your mind maybe using ampersand & or CONCATENATE to combine them. =A1&” “&A2&” “&A3&” “…… =CONCATENATE(A1,” “,A2,” “……) which is more or less time consuming. Two ways to achieve this quickly Using a combination of … Continue reading
Extract last word from a text string
There are many cases that we may just want the last word from a text string. Typical example would be something like the last row in the above screenshot: There are many codes at the end of a text string … Continue reading
Date Formats – A trick to format date with “st”, “nd”, “rd”, “th”
Well, there is no such custom format for date in Excel… However it can be achieved indirectly, with helper cell 🙂