- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的任务是在 Excel 中编写一个“简单”宏来执行以下任务,这些任务我可以相对轻松地使用 VLOOKUP 完成,但由于数据的大小在某些情况下可能需要一天才能完成并完全锁定 PC。
我有一个带有各种标题的 .csv,我需要查询这些标题以查找和替换这些列中的值,标题以“_flag”结尾。
“标志”(用于识别数据的置信度)已更新,所有旧数据都需要相应刷新。
我有一个我称之为“FlagMap”的东西,它列出了旧标志以及相应的新标志应该是一个单独的表。
通常在 Excel 中,我会在另一个选项卡上有一个带有 FlagMap 和 CSV 的工作表(命名范围),并在该列旁边手动放入一个虚拟列以更改并运行 VLOOKUP - 已经完成了一些较小的数据集,但给出了我必须完成的工作量我会在完成之前退休(有些有 20 列带有“标志”的列(总共 40 列)和多达 70,000 行)。
我已经制定了这个过程,但我真的坚持编码。
整体循环
查找标题以“_flag”结尾的列
If True Loop 通过 vlookup 样式代码来改变
基于源数据中的单元格 = FlagMap(COL1) 中的标志将其替换为 FlagMap(COL2) 值
结束更改循环
下一栏
关键之一是我可以替换原始源数据中的空白(标志)(通过在 FlagMap 数组中指定空白条目和相应的标志)。
我的代码完全是一团糟,因为我试图一点一点地构建它(通过记录宏等。正在研究在列上使用过滤器)。
代码如下:它似乎没有做任何事情;伤脑筋……
子标志Update_v00()
Dim wsDATA As Worksheet 'original data to be updated
Dim wsFLAG As Worksheet 'Flag mapping lookup sheet
Dim rFLAGMAP As Range 'Flag mapping range n ROWs & 2 COLs(no headers)
Dim rDATA As Range 'Data to update
Dim i As Long, j As Long, n As Long 'Loop counters
Dim FlagLRow As Long, DataLRow As Long 'last row numbers of corresponding data tables
Dim FlagArray, DataArray, TempArray() As String 'lookup values
Set wsDATA = ThisWorkbook.Sheets("TEST") 'assigns location of data
Set wsFLAG = ThisWorkbook.Sheets("FlagMap") 'assigns location of flags
'lastrow = Cells.SpecialCells(xlCellTypeLastCell).Row
'FlagLRow = wsFLAG.Cells(Rows.Count, 1).End(x1Up).Row 'Sets number of rows upper bound of loop *NOT WORKING
'DataLRow = wsDATA.Cells(Rows.Count, 1).End(x1Up).Row 'Sets number of rows upper bound of loop *NOT WORKING
FlagLRow = wsFLAG.Cells.SpecialCells(xlCellTypeLastCell).Row 'Sets number of rows upper bound of loop
DataLRow = wsDATA.Cells.SpecialCells(xlCellTypeLastCell).Row 'Sets number of rows upper bound of loop
Set rFLAGMAP = wsFLAG.Range("A2:A" & FlagLRow) 'sets range of flags to avoiding column header
'this will need to be within a loop to only select range of those columns ending "_Flag"
'Set rDATA = wsDATA.Range(ColLoopRef & "2:A" & DataLRow) 'set range to update
Set rDATA = wsDATA.Range("F2:F" & DataLRow) 'test data only looking at one small column of data
FlagArray = rFLAGMAP.Value 'set contents of array
DataArray = rDATA.Value 'set contents of array
'Loop to replace
For i = LBound(DataArray) To UBound(DataArray) 'start end values of i loop (Original Flag)
For j = LBound(FlagArray) To UBound(FlagArray) 'start end values of j loop (FlagMap)
If DataArray(i, 1) = FlagArray(j, 1) Then 'if Original Data Flag matches the value in the FlagMap
Set DataArray(i, 1) = FlagArray(j, 2) 'replace it with that from column 2
End If 'all flags should be Mapped hence always finds one
'only issue may be blanks!!
Next j 'loop through the MAPPEDFLAG list (ie. a vlookup) 1st
Next i 'move on to the next DATA flag to be re-flagged
End Sub
h1 h2 h3_flag h4 h5_flag h6
-------------------------------------------------------------
val1 val2 val3 val4 val5 val6
val2 val3 val4 val5 val6 val1
val3 val4 val5 val6 val1 val2
val4 val5 val6 val1 val2 val3
val5 val6 val1 val2 val3 val4
val6 val1 val2 val3 val4 val5
flag alt.
--------------------
val1 vala
val2 valb
val3 valc
val4 vald
val5 vale
val6 valf
h1 h2 h3_flag h4 h5_flag h6
-------------------------------------------------------------
val1 val2 valc val4 vale val6
val2 val3 vald val5 valf val1
val3 val4 vale val6 vala val2
val4 val5 valf val1 valb val3
val5 val6 vala val2 valc val4
val6 val1 valb val3 vald val5
最佳答案
这是我为类似的东西开发的一段代码,但我做了一些调整以适应你的问题。它可能需要一些整理,因为我无权访问您的文件来测试它:
Sub Flags()
'Assuming your flag map is in a 2 column range in a worksheet
'you can create an array then add it to a collection
'so you can access each entry in col2 by the key from col1
Dim fMap() As Variant
Dim FlagMap As New Collection
fMap = Range("A1:B6") 'range where FlagMap stored
Dim i As Integer 'We can reuse this in other counters....
For i = LBound(fMap) To UBound(fMap)
FlagMap.Add CStr(fMap(i, 2)), CStr(fMap(i, 1)) 'FlagMap range has "Key" field 1st - assign to Collection correctly
Next i
'Create a FileSystemObject to work with your csv's
Dim fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a file object to contain your original csv
Dim ifil As Object
Set ifil = fso.GetFile("C:\completepath\myinfile.csv")
'Create a textstream from the input csv file
Dim its As Object
Set its = ifil.OpenAsTextStream()
'We can also output this back into a new csv by
'creating a textstream to let us write to a new file
Dim ots As Object
Set ots = fso.CreateTextFile("C:\completepath\myoutfile.csv")
'We'll also need a string variable to send to this stream
Dim oStr As String
'Create a counter to keep track of lines through your
'input textstream
Dim lineCounter As Integer
lineCounter = 0
'You can split each line into an array delimited by "," using
'the "Split" function so we need an array variable to hold this
Dim lineArray() As String
'Because this steps through row wise, we also need an
'collection to hold references to the columns of interest
'and a variant to access them again
Dim cols As New Collection
Dim col as Variant
'Continue a loop until you reach the end of your textstream
'i.e. the end of your input csv file
Do While Not its.AtEndOfStream
'Increment your line counter
lineCounter = lineCounter + 1
lineArray = Split(its.ReadLine, ",")
'If you are on the first row, find all the interesting columns
If lineCounter = 1 Then ' assuming the headings are on row 1
For i = LBound(lineArray) To UBound(lineArray)
'If we find a heading ending in "_flag" then store its
'column number in the cols collection.
If Right(lineArray(i), 5) = "_flag" Then
cols.Add i 'Add ref of where heading "_flag" is to limit lookup just to those areas and not the whole dataset
End If
Next i
'If it's not the first row then process the data as normal
Else
'Just look at the columns of interest
For Each col In cols
'Replace the value in that column with the corresponding
'value in the FlagMap
lineArray(CInt(col)) = FlagMap(lineArray(CInt(col))) 'this is the lookup in the collection based on the "key"
Next col
End If
'Now print the line back out to your new csv file
oStr = ""
For i = LBound(lineArray) To UBound(lineArray)
oStr = oStr + lineArray(i) & ","
Next i
oStr = Left(oStr, Len(oStr) - 1)
ots.WriteLine (oStr)
Loop
'Close the textstreams
its.Close
ots.Close
End Sub
TextStream
将让您在 VBA 中读取和写入 .csv 文件,而无需在 excel 中打开它们。
Collections
让您开发
'key':{value}
关系,这听起来有点像你的 FlagMap。
关于arrays - 更新与辅助数组匹配的大型数组中的特定值(如 vlookup),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29794493/
在 C 中: int a[10]; printf("%p\n", a); printf("%p\n", &a[0]); 产量: 0x7fff5606c600 0x7fff5606c600 这是我所期望
我一直在尝试运行此循环来更改基于数组的元素的位置,但出现以下错误。不太确定哪里出了问题。任何想法或想法!谢谢。 var population = [[98, 8, 45, 34, 56], [9, 1
我正在尝试获取一个 Ruby 数组数组并将其分组以计算其值。 数组有一个月份和一个 bool 值: array = [["June", false], ["June", false], ["June"
所以我们的目标是在遇到某个元素时将数组分割成子数组下面的示例 array.split("stop here") ["haii", "keep", "these in the same array bu
在this问题已经回答了两个表达式是相等的,但在这种情况下它们会产生不同的结果。对于给定的 int[] 分数,为什么会这样: Arrays.stream(scores) .forEac
我认为我需要的是哈希数组的数组,但我不知道如何制作它。 Perl 能做到吗? 如果是这样,代码会是什么样子? 最佳答案 perldoc perldsc是了解 Perl 数据结构的好文档。 关于arra
我遇到了这个问题,从 API 中我得到一个扩展 JSON,其中包含一个名为坐标的对象,该对象是一个包含数组 o 数组的数组。 为了更清楚地看这个例子: "coordinates": [
postgres 中有(v 9.5,如果重要的话): create table json_test( id varchar NOT NULL, data jsonb NOT NULL, PRIM
我用 echo "${array[@]}" 和 echo "${array[*]}" 得到了相同的结果。 如果我这样做: mkdir 假音乐; touch fakemusic/{Beatles,Sto
我正在尝试创建 typealias 对象的数组数组 - 但我收到“表达式类型不明确,没有更多上下文”编译错误。这是我的代码: typealias TestClosure = ((message: St
如果您在 Python 中创建一维数组,使用 NumPy 包有什么好处吗? 最佳答案 这完全取决于您打算如何处理数组。如果您所做的只是创建简单数据类型的数组并进行 I/O,array模块就可以了。 另
当我将数组推送到只有一个数组作为其唯一元素的数组数组时,为什么会得到这种数据结构? use v6; my @d = ( [ 1 .. 3 ] ); @d.push( [ 4 .. 6 ] ); @d.
在 Julia 中,我想将定义为二维数组向量的数据转换为二维矩阵数组。 如下例所述,我想把数据s转换成数据t,但是至今没有成功。 我该如何处理这个案子? julia> s = [[1 2 3], [4
C 没有elementsof 关键字来获取数组的元素数。所以这通常由计算 sizeof(Array)/sizeof(Array[0]) 代替但这需要重复数组变量名。1[&Array] 是指向数组后第一
所以,假设我有一个像这样的(愚蠢的)函数: function doSomething(input: number|string): boolean { if (input === 42 || in
我有以下数组: a = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16] 我将它用于一些像这样的视觉内容: 1 2 3 4 5 6 7 8 9 10
我想知道数组中的 .toList 与 .to[List] 之间有什么区别。我在spark-shell中做了这个测试,结果没有区别,但我不知道用什么更好。任何意见? scala> val l = Arr
我很难获得完全相同对象的多个元素的当前元素索引: $b = "A","D","B","D","C","E","D","F" $b | ? { $_ -contains "D" } 替代版本: $b =
我正在尝试使用来自我的 API 的 v-select 执行 options,我将数据放在数组数组中。 Array which I got from API 它应该是一个带有搜索的 select,因为它
这个问题在这里已经有了答案: String literals: pointer vs. char array (1 个回答) 4 个月前关闭。 当我执行下一个代码时 int main() {
我是一名优秀的程序员,十分优秀!