根据公式格式化 Excel 工作表 - 如何操作
我正在使用 C++,并生成一个 csv 文件来报告我的一些测试输出。 有大约 1000 次测试迭代,每次迭代输出消耗 excel 中的一行。 我使用 CSV 文件的原因是这样我可以使用 Excel 工作表打开它并查看输出。
现在,我想通过 CSV 使用 Excel 工作表的公式功能。 因此,我为特定单元格生成一个类似“=A1+A2”的字符串,并且它有效。
现在,我想要一个像这样的公式,并且进一步,根据该公式输出,我希望更改单元格的格式,或者将该公式的输出打印为诸如“通过/失败”之类的字符串。
我怎样才能在excel中写出这样的公式。 首先这是可能的。 如果是,如何以及是否可以通过 csv 文件实现相同的效果。
并且,如果否,那么是否有任何其他替代方法可以在不使用 CSV 的情况下实现相同的目的。
问候, 阿琼
I am using C++ and I am generating a csv file to report some of my testing output. There are some 1000 odd test iterations and each iteration output consumes a row in excel.
The reason I use CSV file is so that I can use excel sheet to open it and view the outputs.
Now, I would like to use the formula capability of excel sheet thru CSV.
Hence, I generate a string like "=A1+A2" for a particular cell and it works.
Now, I would like to have a formula like this and further, based on that formula output, I would like to change the format of the cell, or to print the output of that formula as a STRING like PASS/FAIL etc.
How can i write such a formula in excel. Firstly is that possible. If yes, how and Is it possible to achieve the same thru csv file.
And, if NO, then is there any other alternative way of achieving the same without CSV.
Regards,
Arjun
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要条件格式。 这允许通过单元格(或另一个单元格)的内容来设置格式(包括文本颜色、字体、背景颜色,以及 2007 年的单元格图形中的格式)。
(我认为这不可能通过 CSV 实现,因为它正在格式化,但驱动格式化的公式可能是。)
You need conditional formatting. This allows formatting (including text colour, font, background colour, and in 2007 in cell graphs) to be set by the content of the cell (or another cell).
(I don't think this will be possible through CSV as it is formatting, but the formula driving the formatting could be.)