- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为 QuickBooks 导出做一些数据格式化,一步很慢。我有一个名为“输出”的工作表,其中每个条目都以所需的格式排列,但我只希望将完全填充的条目用于另一个名为“ map ”的工作表上。
到目前为止,一切都是用公式完成的,这部分工作正常。我编写了一个小脚本来循环所有条目,并将相关信息从“输出”拉到五个不同的数组中。然后它循环回这些数组并填充“ map ”中适当列中的单元格。
我的脚本快速填充数组,但填充单元格需要很长时间。我使用 for 循环来迭代数组,每次迭代大约需要三秒钟,当您处理数千个条目时,这是一个非常长的时间。
Sub Prettify()
Dim numbers()
Dim catagories()
Dim classes()
Dim subclasses()
Dim values()
Dim count As Integer
count = 2
' The upper bounds of the loop is a calculation of the number of entries we will access
For i = 2 To (Sheets("Data").Cells(7, 8).Value * Sheets("Data").Cells(4, 3).Value + 2)
If (Sheets("Output").Cells(i, 1).Value = "") Then
' Do Nothing
Else
ReDim Preserve numbers(count)
ReDim Preserve catagories(count)
ReDim Preserve classes(count)
ReDim Preserve subclasses(count)
ReDim Preserve values(count)
count = count + 1
numbers(count - 2) = Val((Sheets("Output").Cells(i, 1).Value))
catagories(count - 2) = Sheets("Output").Cells(i, 2).Value
If (Sheets("Output").Cells(i, 3).Value = 0) Then
classes(count - 2) = Sheets("Output").Cells(i, 4).Value
subclasses(count - 2) = ""
Else
classes(count - 2) = Sheets("Output").Cells(i, 3).Value
subclasses(count - 2) = Sheets("Output").Cells(i, 4).Value
End If
values(count - 2) = Sheets("Output").Cells(i, 5).Value
End If
Next
MsgBox (numbers(0))
MsgBox (catagories(0))
Sheets("Map").Activate
' This next part is slow
For j = 2 To count
Sheets("Map").Cells(j, 1).Value = numbers(j - 2)
Sheets("Map").Cells(j, 2).Value = catagories(j - 2)
Sheets("Map").Cells(j, 3).Value = classes(j - 2)
Sheets("Map").Cells(j, 4).Value = subclasses(j - 2)
Sheets("Map").Cells(j, 5).Value = values(j - 2)
Next
End Sub
最佳答案
我遇到了这个问题,问题是您的代码一个接一个地访问每个单元格。关闭屏幕和事件会有所帮助,但它仍然会很慢并且会因更大的阵列而瘫痪。
解决方案是一次性将所有东西都倾倒到细胞中。为此,您需要使用多维数组。这听起来很复杂,但一旦你了解它就不会了。
看起来好像您正在以同样的方式从工作簿中获取数据。
这是一些应该对其进行排序的代码,它看起来非常简单,但它确实有效。
Dim v_Data() as variant
Dim range_to_Load as range
Dim y as long, x as long
'set a range or better still use a list object
set range_to_Load = thisworkbook.sheets("Data").Range("A1:F100")
'Load the range into a variant array.
with range_to_Load
redim v_data(1 to .rows.count, 1 to .columns.count)
v_data = .value
end with
' v_data now holds all in the range but as a multidimentional array
' to access it its going to be like a grid so
v_data(row in the range, column in the range)
'Loop through the array, I'm going to covert everything to a string then
'dump it in the Map sheet you have
' you should avoid x,y as variables however this is a good use as they are coordinate values.
'lbound and ubound will loop y though everything by row as it is the first dimension in the array.
For y = lbound(v_data) to ubound(v_data)
' next we are going to do the same but for the second dimention
For x = lbound(v_data,2) to ubound(v_data,2)
vdata(y,x) = cstr(v_data(y,x))
Next x
Next y
'We have done something with the array and now want to put it somewhere, we could just drop it where we got it from to do this we would say
range_to_Load.value = v_data
' to put it else where
thisworkbook.sheets("Map").range("A1").resize(ubound(v_data), ubound(v_data,2)).value = v_data
关于arrays - Excel VBA : populating cells with array values is very slow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38161874/
我在 MongoDb 上有具有以下结构的文档, 我正在将 Mongoose 版本 ^4.8.1 与我的 Node 应用程序一起使用。我为上述文档创建了 3 个模式模型,如下所示, Event.js v
选择查询在 waterline-postgresql 的 .populate() 中不起作用。 Model.find(query).populate(assoc.alias,{select:['fie
我正在创建三个下拉菜单,它工作得很好,但我希望第二个下拉列表出现在第一个的选择上,第三个出现在第二个的选择上如何如果有人可以指导我或给我一个例子,我将不胜感激 PS:第二个下拉列表或表有一个来自第一个
我正在尝试使用 Show 模型中的数据填充()我的 User 模型中的所有订阅。我已经尝试过 .populate('subscriptions.show') 但它对结果没有任何作用。 如果我将订阅设置
我有一个集合,它有一个引用另一个集合的 objectId 的属性。 placeSchema = mongoose.Schema({ name: String, category: [{
我有一个像这样的 Mongoose 模式: var Address = { doorNo:String, city:String, state:String, coun
我有以下带有选择多个属性的下拉菜单,我需要将它们转换为普通下拉菜单,保持其功能: 从此: 对此: 以下是带有绑定(bind)的选择下拉列表: 下拉列表最初是从 foreach
我在 Kotlin 上使用 MongoDB 和 Spring,我希望我的应用程序在启动时填充 MongoDB 集合。 (并在每次启动时清洁它) 我的问题是,如果我正在填充的某些数据有问题,我该如何一一
org.apache.commons.beanutils.BeanUtils: BeanUtils.populate(Object bean, Map properties); Populate th
目前,我正在尝试使用一副纸牌填充 ArrayList,通过使用 for 循环来获取每张纸牌。它并没有完全按照我的预期工作,我希望有人能为我指明正确的方向。 我看到以下错误: System.Argume
我正在使用 MongooseDeepPopulate项目的包。我有 SchemaA、SchemaB、SchemaC、SchemaD。我的 SchemaD、SchemaC 连接到 SchemaB,而 S
我正在尝试更好地掌握 Express.js,并尝试创建一个简单的博客网站。 我的用户模型很简单:用户名、显示名称和一系列帖子。 const userSchema = new Schema({
我尝试了几种不同的方法,但我就是无法让 Mongoose 将 Users 信息填充到 Items 集合中。 文件:users.js var mongoose = require( 'mongoose'
我正在为 Spring Batch 作业编写集成测试。我想在每次测试之前使用存储库填充器将测试数据加载到内存数据库中。 到目前为止,我找到的示例似乎表明存储库填充器只会在上下文初始化时填充一次。这对我
这个问题已经有答案了: Get multiple elements by Id (15 个回答) 已关闭 8 年前。 我的网站中有 2 个下拉菜单,一个适用于用户使用手机时,另一个适用于用户使用桌面时
我正在使用 swift 构建一个 iPhone 应用程序,并且我有一个矩形横幅广告,我正试图展示它。我已经为 iAds 正确设置了我的 Dev 帐户,但广告没有填充到应用程序中。我得到了一个测试广告,
我想用指定的用户查询图像表,但我的代码不起作用。 Image.find().populate('user', { id : '1' }).sort({ updatedAt: 'desc' }).exe
所以我有我的改革对象,我想在验证之前解析我的字符串数据,以便能够使用干式验证 需要(:我的字段)。填充(GT?:0) 为了做到这一点,我使用 populator 属性:membership_fee,填
我有一个程序已经运行良好几个月了。今天早上我一直在尝试在服务器上安装 Postfix,突然网站上出现错误。这是回溯 mod_wsgi (pid=11948): Target WSGI script '
我使用函数.populate() 来获取按类别 分组的equipements,所以我的模型是这样的 var mongoose = require('../config/db'); var Equipe
我是一名优秀的程序员,十分优秀!