本文介绍了"不是有效名称。确保它不包含无效字符或标点符号,并且不会太长。怎么了?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨!访问时出现以下错误。从我可以告诉查询中的其他公式,这应该工作。



不是有效名称。请确保它不包含无效字符或标点符号,并且不会太长。有什么问题?



我使用现有字段的模板将这个放在一起。我正在寻找它成为一个电子邮件地址。



用户名:[左(staff.FirstName,20)&(。)& Left(staff.LastName,20)&(@ valleycentralschools.org)]



我尝试过:



用户名:[左(staff.FirstName,20) &(。)& Left(staff.LastName,20)&(@ valleycentralschools.org)]

Hi! I'm getting the following error with access. From what I could tell with the other formulas in the query, this should work.

" is not a valid name. Make sure that it does not include invalid characters or punctuation and that it is not too long. What is wrong?

I used the template of an existing field to put this one together. I'm looking for it to become an email address.

User Name: [Left(staff.FirstName,20)& (".")&Left(staff.LastName,20)&("@valleycentralschools.org")]

What I have tried:

User Name: [Left(staff.FirstName,20)&(".")&Left(staff.LastName,20)&("@valleycentralschools.org")]

推荐答案



这篇关于"不是有效名称。确保它不包含无效字符或标点符号,并且不会太长。怎么了?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 08:46