问题
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