在表1中,我有以下列表:
A B
1 Name Age
2 Amanda 12
3 Bob 43
4 Jim 22
使用此功能,我可以通过数据在工作表2中创建一个下拉列表 - >数据验证我可以通过下拉列表添加名称(Amanda,Bob,Jim)。
我不知道的是如何在附录数据中添加他们的年龄,在这个例子中是B列。
在表2中,我想显示我通过下拉列表选择的每个人的年龄,并在旁边的行上看到它。
答案 0 :(得分:2)
你需要VLOOKUP。假设你有单元格A1(在Sheet2上)的下拉列表
=VLOOKUP(A1,Sheet1!$A$1:$B$4,2,0)
答案 1 :(得分:2)
使用getUserInfoFromStorage() {
var emailFromStorage;
var passwordFromStorage;
this._storage.get('email').then((emailValue) => {
emailFromStorage= emailValue;
}).then(()=>{
this._storage.get('password')
.then((passwordValue)=> {
passwordFromStorage = passwordValue;
})
})
return {email: emailFromStorage, password: passwordFromStorage};
}
prepopulateUserInfo(userInfo: any) {
if (userInfo.email != null && userInfo.password != null) {
(<FormControl>this.loginForm.controls['email'])
.setValue(userInfo.email);
公式,如果Sheet2!D2保留了名称,则E2可以
VLookup