在成为其他语言的恐龙之后,我正在尝试学习 VBA。我正在进行的项目并不多,主要是概念验证或培训练习。
我有一个 Excel 表格,其中包含“部门”、“列表标记”、“A 标记”、“B 标记”和“C 标记”列。我有一个表格,用户选择部门,然后输入成本。我想选择部门,找到那一行,提取加价值并向用户显示列表、A、B 和 C 定价。向回答这个问题的 Chris Neilsen 大声喊叫。它有帮助,不幸的是还不够。我重写了他的代码,但通过调试我发现它并没有真正拾取任何行。我已经知道我需要哪些列,而不是行。
基本上:
User selects department
User enters item cost
Search column 1 ("Department") for a match
(Match should exist, because this column is used to populate the first ComboBox
When the match is found, get the row.
Once the row is found, get the markups from the corresponding columns
Output cost times markup for all four prices
我会向您展示我的代码,它在哪里失败,但我所做的每一次更改都是一个不同的错误。我想我坐在这里试图重新发明轮子。