我试图复制这个公式
= INDEX(myrows, MATCH(B3 & "/Fashion Men",mycolumn,0) )
到整个专栏。
本公式的编制: (此公式在给定单元格中查找值(在本例中为B3)并与“/ men”连接并在“mycolumn”范围内搜索,然后在找到它之后,它会给出该单元格的行。因此最终输出为单行出现在范围内的myrows)
我已尝试过以下内容,但它只打印出一行而不会读取B4的值等等。
=ARRAYFORMULA( INDEX(myrows, MATCH(B3:B & "/Fashion Men",mycolumn,0) ) )
答案 0 :(得分:0)
您可以尝试这样的事情:
try{
# Import the Selenium DLLs
Add-Type -Path "$Seleniumlib\Selenium.WebDriverBackedSelenium.dll"
Add-Type -Path "$Seleniumlib\WebDriver.dll"
Add-Type -Path "$Seleniumlib\WebDriver.Support.dll"
}
catch [Exception]{
Write-Host ("Error: {0}" -f $_.Exception.Message)
exit 1
}
$options = New-Object OpenQA.Selenium.Chrome.ChromeOptions
$options.AddArgument("--incognito")
$driver = New-Object OpenQA.Selenium.Chrome.ChromeDriver($options)
您需要更新{1,2,3,4}数组以匹配您要返回的myrows范围中的列号