Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Excelでは、列にあらゆる種類の値があり、
1 100 12 120 123 123 03 030 133 133
3桁になるまで最後にゼロを追加したい。
乾杯
これを試して:
=A1&REPT("0",3-LEN(A1))
Rept() は、文字を特定の回数繰り返します。3-LEN(A1) は、何回繰り返すかを計算します。