跳到主要內容

如何在Excel中將數字格式設置為序數(1st 2nd 3rd)?

在某些情況下,當我們按如下所示的屏幕快照進行排名時,我們需要將數字格式設置為1st,2nd,3rd等。 但是,您知道如何在Excel中將這些基數格式化為序數嗎? 通常,在Excel中沒有將數字轉換為1st的內置函數,但是,在這裡,我可以介紹一些有關此問題的技巧。

VBA格式為序號

用Kutools for Excel將數字格式化為序號 好主意3


箭頭藍色右氣泡 VBA格式為序號

要將數字格式化為序數,以下是一個宏代碼可以為您提供幫助。

1。 按 Alt + F11鍵 啟用鍵 Microsoft Visual Basic for Applications 窗口。

2。 點擊 插入 > 模塊,然後在VBA下面粘貼到“模塊”腳本。 看截圖:

VBA:格式編號為序號

Function Addth(pNumber As String) As String
'UpdatebyExtendoffice20160628
Select Case CLng(VBA.Right(pNumber, 1))
    Case 1
    Addth = pNumber & "st"
    Case 2
    Addth = pNumber & "nd"
    Case 3
    Addth = pNumber & "rd"
    Case Else
    Addth = pNumber & "th"
End Select
Select Case VBA.CLng(VBA.Right(pNumber, 2))
    Case 11, 12, 13
    Addth = pNumber & "th"
End Select
End Function

doc格式編號1st 1

3.然後,在要設置為序號(例如C2)的數字旁邊選擇一個空白單元格,然後輸入此公式 =加法(B2),B2是您使用的號碼,然後按 Enter 鍵,然後將自動填充手柄拖到要應用此公式的單元格上。 看截圖:
doc格式編號1st 2


箭頭藍色右氣泡 用Kutools for Excel將數字格式化為序號

如果您不擅長執行宏代碼,則可以嘗試申請 Excel的Kutools將數字轉換為序數 實用程序,只需單擊一下即可完成工作。

Excel的Kutools, 與以上 300 方便的功能,使您的工作更加輕鬆。 

免費安裝 Kutools for Excel,請執行以下操作:

選擇要設置為序號的數字,然後單擊 庫工具 > 內容 > 將數字轉換為序數。 看截圖:
doc格式編號1st 3 doc kutools編號為序數2



最佳辦公生產力工具

🤖 Kutools 人工智慧助手:基於以下內容徹底改變數據分析: 智慧執行   |  生成代碼  |  建立自訂公式  |  分析數據並產生圖表  |  呼叫 Kutools 函數...
熱門特色: 尋找、突出顯示或識別重複項   |  刪除空白行   |  合併列或儲存格而不遺失數據   |   沒有公式的回合 ...
超級查詢: 多條件VLookup    多值VLookup  |   跨多個工作表的 VLookup   |   模糊查詢 ....
高級下拉列表: 快速建立下拉列表   |  依賴下拉列表   |  多選下拉列表 ....
欄目經理: 新增特定數量的列  |  移動列  |  切換隱藏列的可見性狀態  |  比較範圍和列 ...
特色功能: 網格焦點   |  設計圖   |   大方程式酒吧    工作簿和工作表管理器   |  資源庫 (自動文字)   |  日期選擇器   |  合併工作表   |  加密/解密單元格    按清單發送電子郵件   |  超級濾鏡   |   特殊過濾器 (過濾粗體/斜體/刪除線...)...
前 15 個工具集12 文本 工具 (添加文本, 刪除字符,...)   |   50+ 圖表 類型 (甘特圖,...)   |   40+ 實用 公式 (根據生日計算年齡,...)   |   19 插入 工具 (插入二維碼, 從路徑插入圖片,...)   |   12 轉化 工具 (數字到單詞, 貨幣兌換,...)   |   7 合併與拆分 工具 (高級合併行, 分裂細胞,...)   |   ... 和更多

使用 Kutools for Excel 增強您的 Excel 技能,體驗前所未有的效率。 Kutools for Excel 提供了 300 多種進階功能來提高生產力並節省時間。  點擊此處獲取您最需要的功能...

產品描述


Office選項卡為Office帶來了選項卡式界面,使您的工作更加輕鬆

  • 在Word,Excel,PowerPoint中啟用選項卡式編輯和閱讀,發布者,Access,Visio和Project。
  • 在同一窗口的新選項卡中而不是在新窗口中打開並創建多個文檔。
  • 將您的工作效率提高 50%,每天為您減少數百次鼠標點擊!
Comments (5)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Amazing!!! I've been manually doing this for lots of strings of numbers when writing instructions. This is a huge time saver! Thank you!
This comment was minimized by the moderator on the site
This was calculated up to 31, for the days of the month. It is easy to change {cell}=30 to RIGHT({cell},1)="0" .
This comment was minimized by the moderator on the site
={cell}&IF(OR(AND({cell}>3,{cell}<21),AND({cell}>21,RIGHT({cell},1)>"3",RIGHT({cell},1)<="9"),{cell}=30),"th",CHOOSE(RIGHT({cell},1),"st","nd","rd"))
This comment was minimized by the moderator on the site
use this formula without VBA Coding for Position Holder
=SUM(IF(B6<$B$1:$B$32,1/COUNTIF($B$1:$B$32,$B$1:$B$32)))+1&IF(OR(MOD(SUM(IF(B6<$B$1:$B$32,1/COUNTIF($B$1:$B$32,$B$1:$B$32)))+1,100)={11,12,13}),"th",CHOOSE(MIN(5,RIGHT(SUM(IF(B6<$B$1:$B$32,1/COUNTIF($B$1:$B$32,$B$1:$B$32)))+1)+1),"th","st","nd","rd","th"))

when you put this formula in cell than press Ctrl+Shift+Enter
This comment was minimized by the moderator on the site
Hello Abdul Sir,

Really It works but i want to understand the formula how it works. I tried and understand few of it but need to understand it fully.


Requesting you to please please please do the same.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations