使用 VB.net 在 Excel 中复制条件格式?

发布于 2024-11-17 18:53:33 字数 263 浏览 3 评论 0原文

我在工作表“二”中有一个列“A”,在工作表“一”中有另一列“B”!

我想将 A 列的条件格式复制为两份到 B 列的一份!

基本上,我想将除数据之外的所有内容从 A 列复制到一列 B 列!

请帮忙!!

我:

sheetA & sheetB object as Objects in my code
I am using VB.NET

我是 Vb.net 的新手 - 请帮忙!

I have a column 'A' in worksheet 'two' and another column 'B' in worksheet 'one' !

I want to copy the conditional formatting of Column A in two to Column B in one !

Basically, I want to copy everything from Column A in two to Column B in one except the data !

Please help !!

I have :

sheetA & sheetB object as Objects in my code
I am using VB.NET

I am a newbie in Vb.net - Please Help !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事灯 2024-11-24 18:53:33

这里有一点推动:

    oExcel = CreateObject("Excel.Application")
    Book = oExcel.Workbooks.Open("C:\Users\Jonathan\Documents\Test2.xlsx")
    Sheet = Book.Worksheets(1)
    SourceRange = Sheet.Range("A1:A" & Sheet.Range("A1").End(Excel.XlDirection.xlDown).Row)
    DestRange = Sheet.Range("D1:D" & Sheet.Range("D1").End(Excel.XlDirection.xlDown).Row)

它的重点是这一部分,您可以从一个范围中获取格式条件并将其添加到另一个范围中。这假设只有一个格式化标准。不止一个需要您通过在从 1 到 SourceRange.FormatConditions 的循环中使用 SourceRange.FormatConditions(i) 来跳过所有这些(我认为最多有 3 个)。计数

    DestRange.FormatConditions.Add(Excel.XlFormatConditionType.xlCellValue, SourceRange.FormatConditions(1).Operator, SourceRange.FormatConditions(1).Formula1)
    DestRange.FormatConditions(1).Interior.ColorIndex = SourceRange.FormatConditions(1).Interior.ColorIndex

Here's a bit of a push:

    oExcel = CreateObject("Excel.Application")
    Book = oExcel.Workbooks.Open("C:\Users\Jonathan\Documents\Test2.xlsx")
    Sheet = Book.Worksheets(1)
    SourceRange = Sheet.Range("A1:A" & Sheet.Range("A1").End(Excel.XlDirection.xlDown).Row)
    DestRange = Sheet.Range("D1:D" & Sheet.Range("D1").End(Excel.XlDirection.xlDown).Row)

The meat of it is this part, where you take the format conditions from one range and add it to the other. This assumes there is only one criterion for formatting. More than one would require that you would step over all of them (I think there are up to 3) by using SourceRange.FormatConditions(i) in a loop from 1 to SourceRange.FormatConditions.Count

    DestRange.FormatConditions.Add(Excel.XlFormatConditionType.xlCellValue, SourceRange.FormatConditions(1).Operator, SourceRange.FormatConditions(1).Formula1)
    DestRange.FormatConditions(1).Interior.ColorIndex = SourceRange.FormatConditions(1).Interior.ColorIndex
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文