需要公式为总共10个字符添加足够的零


0

我需要调整下面的公式,以便不是总是添加5个零,而是添加足够的零到10个值(字符)。我在系统(iCIMS)中使用它,结果(取决于特定人员的状态,即此模拟中的A1和A2)需要是第一个初始,最后一个初始,系统ID,具有足够的零等于10个值。

Example: Kiki James  System id: 123  Result: KJ12300000
Example: Bob Jones System id: 2345   Result: BJ23450000

以下工作了一段时间;但是,现在系统ID已经增长到4位数(所以有些人有3位数,有些4位)。

IF(OR(A1="yes",A2="yes),Left(B1)&Left(B2)&B3&"00000","")

Answers:


1

REPT 做你需要的。它附加足够 0 直到有8个字符。将其添加到2个首字母,总长度为10。

=IF(OR(A1="yes",A2="yes"),LEFT(B1)&LEFT(B2)&B3&REPT("0",8-LEN(B3)),"")

sample data

Napoleon Solo的系统ID太长了。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.