if-else的VBA脚本

时间:2016-09-29 19:13:11

标签: string vba if-statement text

对于G列,我的列看起来像这样:

G栏
完成
完成
正在进行中 未开始
完成

我需要一个If-Else脚本将所有Complete值转换为'Y',否则为'N'。
有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

您需要学习VBA脚本的三个基本元素。

  1. 循环参数(开头 - >结束)
  2. 采取的行动(循环内容)
  3. 迭代(如何移动到循环中的下一条记录,避免无限循环)

    export default class Help extends Component {
        componentWillMount(){
            this.state = {open:false};
        }
    
    
        handleOpen() {
            this.setState({open: true});
        }
    
        handleClose() {
            this.setState({open: false});
        }
    
        render() {
            const actions = [
          <FlatButton
            label="Cancel"
            primary={true}
            onTouchTap={this.handleClose}
          />,
          <FlatButton
            label="Submit"
            primary={true}
            keyboardFocused={true}
            onTouchTap={this.handleClose}
          />,
        ];
            return (
                <div className="container-fluid">
                    <button type="button" className="btn btn-primary active" id="Hlp" onTouchTap={this.handleOpen}>Help</button>
                    <Dialog
                        title="Dialog With Actions"
                        actions={actions}
                        modal={false}
                        open={this.state.open}
                        onRequestClose={this.handleClose}
                        >
                        The actions in this window were passed in as an array of React objects.
                    </Dialog>
                </div>
            );
        }
    }