我有一张大型Excel表格,其中包含以下格式列出的多年数据:
class Signup extends Component{
constructor(props){
super(props);
this.state = {name:''};
this.onInputChange = this.onInputChange.bind(this)
}
onInputChange(event){
this.setState({name:event.target.value})
}
render(){
return (
<div>
<input type="text"
ref="username"
className="SignupUsername"
placeholder="Username"
value = {this.state.name}
onChange={this.onInputChange}
/>
<button onClick= {this.props.signupRequest(this.state.name)} >
Signup
</button>
</div>
)
}
}
function mapDispatchToProps(dispatch){
return bindActionCreators({signupRequest:signupRequest},dispatch)
}
export default connect(null,mapDispatchToProps)(Signup)
美国
加拿大
日本
英国
我需要对这些字段求和以获得年度总数。我尝试过的是:
= SUMIF(A3:A7, “YEAR(A3:A7)= 2012”)
但它返回0.
非常感谢关于正确形式的建议(多年来复制)或一些替代方法。非常感谢。