我用Excel的visual basic编写了这段代码。我尝试不使用a、b和c,只使用Range("C2")、F2、G2,但也不起作用。我真的不知道为什么这个不起作用,有人能帮我吗?:)
Sub pourcentremiseport()
Dim a As Integer
Dim b As Integer
Dim c As Integer
a = Range("C2").Value
If a < 6 Then
b = 9.6
c = 0
ElseIf a >= 6 And a < 20 Then
b = 0
c = 10
Els
举个例子:
A1: Smith, John Michael
A2: John Michael Smith
如果我希望在A1和A2中找到字符串"Smith“时,要格式化单元格(假设将单元格涂成绿色),那么公式是什么?
excel文件中的A1 ->列表
数据库中的A2 ->列表
我正在比较从用户数据库提取的名称列表和Excel文件中的名称列表,以查看数据库中是否缺少哪些名称。
有谁能帮我做下面的如果声明。我尝试了以下方法
IF(A2="",D1,IF(D1="",A1,IF(A2=A2,"",D1)))
但它似乎没有给出正确的答案。
不幸的是,我不能张贴我的excel s/h图像。
我要确保
IF (Cell = number)
//return as blank
ELSE IF(Cell = no number)
// return number from Cell that has the number
谢谢
我试图使用filter函数从2列中进行选择,只选择重复的值。我举一个例子:
我的专栏是:
Names Jobs Value
-
Gerard player 4
Gerard player 2
Bill player 5
Bill painter 4
Bill player 4
Bill player 3
Gerard painter 3
Helena player 3
Helena player 2
Mary player 3
我有这样的疑问
=QUERY(G2:I, "select G, AVG(I) where G is
我正在尝试从excel中读取这个公式:
'=IF(AG>9,IF(AG>19,IF(AG>39,12%,8%),4%),0%)
Following is the output I'm expecting, where AT contains the formula
AG AT
12 4%
I'm using the following command:
equation <- x[,"AT"] #x is the dataframe
e