Any function to format 5 as 5/5/5?

ⅰ亾dé卋堺 提交于 2019-12-13 07:52:28

问题


Suppose my cell contains 5 . I want 5/5/5 in cell B of excel sheet.Like A 5 B 5/5/5 A 10 B 10/10/10 How to do it in excel sheet using any function?Any help?enter code here


回答1:


In B1 add

=A1 & "/" & A1 & "/" & A1

and drag down (from the cells bottom right corner).




回答2:


A more generalised version =REPT(A1&"/",2)&A1.



来源:https://stackoverflow.com/questions/21727956/any-function-to-format-5-as-5-5-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!