数据透视表:从一列获取数据
让我们说我的表是这样的:
Date Status
2010-01-02
2010-01-03 accept
2010-01-03 accept
2010-01-03 reject
2010-01-03
2010-01-04 reject
我想要如果值为空,则意味着接受。除此之外,我想显示如下结果:
Date Accept Reject
2010-01-02 1 0
2010-01-03 3 1
2010-01-04 0 1
这意味着,计算状态列中包含的接受或拒绝的数量。我该怎么做?
lets say my table like:
Date Status
2010-01-02
2010-01-03 accept
2010-01-03 accept
2010-01-03 reject
2010-01-03
2010-01-04 reject
i want if value null, it means accept. Beside that i want show the result like:
Date Accept Reject
2010-01-02 1 0
2010-01-03 3 1
2010-01-04 0 1
it means, calculate the amount of either accept or reject which contained in the status column. How do i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已更新**并正在运行
updated** and working