ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 2857|回复: 11

[已解决] 同个表格内5钟颜色的数字

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-8-31 09:26 | 显示全部楼层 |阅读模式
项目
数据1
数据2
1
14/0/1/0/2
18/0/2/0/2
11/0/6/9/27
2
10/10/1/7/1
3/10/0/6/3
16/9/3/2/5
3
1/5/0/0/4
0/5/0/0/2
4
0/1/0/2/9
1/1/0/2/8
能否批量改变表格中数字的颜色和加粗度,使表格上的数字跟斜上面的两行数字一样。
5
0/11/0/1/13
0/4/0/0/6
像这样的数据有100来个,希望大神提供好的方法,谢谢。
6
1/9/0/1/8
1/11/0/1/10
7
2/14/0/11/3
1/12/0/9/7
要求:
8
0/15/0/3/8
0/14/0/1/7
第一个斜杠前的数字需要标红加粗,第二个斜杠前的数字需要标红不加粗
9
0/9/0/3/5
0/12/0/3/5
第三个斜杠前的数字需要标橙色加粗,第四个斜杠前的数字需要标绿加粗,第四个斜杠后的数字需要标黑色不加粗,
10
2/16/0/8/11
3/18/0/10/6
斜杠全是黑色不加粗。

TA的精华主题

TA的得分主题

发表于 2018-8-31 09:35 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 李兴德 于 2018-8-31 09:36 编辑

这个不好办吧   

TA的精华主题

TA的得分主题

发表于 2018-8-31 10:03 | 显示全部楼层
Sub test()
Dim Source As Range, Rng As Range
Dim arr, y&
Set Source = Sheet1.UsedRange
For Each Rng In Source
    arr = Split(Rng.Value, "/")
    y = 1
    If UBound(arr) = 4 Then
       For i = 0 To UBound(arr)
            With Rng.Characters(Start:=y, Length:=Len(arr(i))).Font
                Select Case i
                   Case 0
                       .ColorIndex = 3
                       .Bold = True
                   Case 1
                       .ColorIndex = 3
                   Case 2
                       .ColorIndex = 45
                       .Bold = True
                   Case 3
                       .ColorIndex = 4
                       .Bold = True
                   Case 4
                       .ColorIndex = 1
                End Select
            End With
            y = y + Len(arr(i)) + 1
        Next
    End If
Next
End Sub

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2018-8-31 10:26 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Sub test()
  2.     Dim ar, br, cr(), rag As Range, m&, n&, k&, q&, p&
  3.     p = 1: q = 1
  4.     For Each rag In Range("b2:c11")
  5.         br = Split(rag, "/")
  6.             For n = LBound(br) To UBound(br)
  7.                 k = k + 1
  8.                 ReDim Preserve cr(1 To k)
  9.                 cr(k) = Len(br(n))
  10.             Next
  11.             With rag.Characters(Start:=p, Length:=cr(q)).Font
  12.                 .FontStyle = "加粗"
  13.                 .ColorIndex = 3
  14.             End With
  15.             p = p + cr(q) + 1: q = q + 1
  16.             With rag.Characters(Start:=p, Length:=cr(q)).Font
  17.                 .ColorIndex = 3
  18.             End With
  19.             p = p + cr(q) + 1: q = q + 1
  20.             With rag.Characters(Start:=p, Length:=cr(q)).Font
  21.                 .FontStyle = "加粗"
  22.                 .Color = -16727809
  23.             End With
  24.             p = p + cr(q) + 1: q = q + 1
  25.             With rag.Characters(Start:=p, Length:=cr(q)).Font
  26.                 .FontStyle = "加粗"
  27.                 .ColorIndex = 10
  28.             End With
  29.             p = 1: q = 1: Erase cr: Erase br: k = 0
  30.     Next
  31. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2018-8-31 10:54 | 显示全部楼层

  1. Sub test()
  2. Dim Rng As Range, RG As Range, I&, K&, K1&, J&, ooo
  3.     Set Rng = Application.InputBox("选择指定区域", "选择框", Type:=8)
  4.     For Each RG In Rng
  5.      K = 0: J = 0
  6.         For I = 1 To Len(RG) + 1
  7.         K1 = K
  8.             If Mid(RG & "/", I, 1) = "/" Then
  9.              K = 0
  10.             ooo = Mid(RG, I, 1)
  11.                 K = K + I: J = J + 1
  12. '                Debug.Print I
  13. '                Debug.Print Mid(RG, I, 1)
  14. '                Debug.Print "K=" & K, "K1=" & K1
  15. '                Stop
  16.                     If J = 1 Then
  17.                             RG.Characters(K1 + 1, K - K1 - 1).Font.ColorIndex = 8
  18.                             RG.Characters(K1 + 1, K - K1 - 1).Font.Bold = True
  19.                         ElseIf J = 2 Then
  20.                             RG.Characters(K1 + 1, K - K1 - 1).Font.ColorIndex = 8
  21.                             RG.Characters(K1 + 1, K - K1 - 1).Font.Bold = True
  22.                         ElseIf J = 3 Then
  23.                             RG.Characters(K1 + 1, K - K1 - 1).Font.ColorIndex = 8
  24.                             RG.Characters(K1 + 1, K - K1 - 1).Font.Bold = True
  25.                         ElseIf J = 4 Then
  26.                             RG.Characters(K1 + 1, K - K1 - 1).Font.ColorIndex = 8
  27.                             RG.Characters(K1 + 1, K - K1 - 1).Font.Bold = True
  28.                         ElseIf J = 5 Then
  29.                             RG.Characters(K1 + 1, K - K1 - 1).Font.ColorIndex = 8
  30.                             RG.Characters(K1 + 1, K - K1 - 1).Font.Bold = True
  31.                     End If
  32.                 Else
  33.                
  34.             End If
  35.         Next I
  36.     Next
复制代码

TA的精华主题

TA的得分主题

发表于 2018-8-31 10:57 | 显示全部楼层
附件测试颜色自己选择下

同个表格内5钟颜色的数字.zip

16.01 KB, 下载次数: 8

TA的精华主题

TA的得分主题

发表于 2018-8-31 11:15 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 ione_fox 于 2018-8-31 14:12 编辑

正则方法:

复制代码

TA的精华主题

TA的得分主题

发表于 2018-8-31 11:16 | 显示全部楼层
正则方法
  1. Sub test2() '正则方式
  2. Dim Rng As Range, RG As Range, I&, Matchs, M
  3.     With CreateObject("vbscript.regexp")
  4.             .Global = True
  5.             .Pattern = "[0-9]+"
  6.             .IgnoreCase = True
  7.     Set Rng = Application.InputBox("选择指定区域", "选择框", Type:=8)
  8.     For Each RG In Rng
  9.     I = 0
  10.         Set Matchs = .Execute(RG.Value)
  11.         For Each M In Matchs
  12.             RG.Characters(I + 1, Len(M)).Font.ColorIndex = 8
  13.             RG.Characters(I + 1, Len(M)).Font.Bold = True
  14.             I = I + Len(M) + 1
  15.         Next
  16.     Next
  17.     End With
  18. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2018-8-31 11:36 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
厉害    路过  学习了   

TA的精华主题

TA的得分主题

发表于 2018-8-31 12:50 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Sub Test()
  2.     Dim rgSource As Range, rg As Range
  3.     Dim arrColors As Variant
  4.    
  5.     Set rgSource = Sheet1.Range("C2:C11")
  6.     arrColors = Array(3, 3, 45, 4, 1)
  7.    
  8.     For Each rg In rgSource
  9.         SetCharColor rg, arrColors
  10.     Next
  11. End Sub


  12. Function SetCharColor(rg As Range, arrColor As Variant)
  13.     Dim strVal As String, strSplit() As String, strChar As String
  14.     Dim arrInfo As Variant, lngRow As Long
  15.     Dim intLen As Integer
  16.    
  17.     strVal = rg.Value
  18.     strChar = "/"
  19.     strSplit = Split(strVal, strChar)
  20.     ReDim arrInfo(1 To UBound(strSplit) + 1, 1 To 3)
  21.    
  22.     intLen = 1
  23.     For lngRow = LBound(strSplit) To UBound(strSplit)
  24.         arrInfo(lngRow + 1, 1) = intLen
  25.         arrInfo(lngRow + 1, 2) = Len(strSplit(lngRow))
  26.         arrInfo(lngRow + 1, 3) = arrColor(lngRow)
  27.         intLen = intLen + Len(strSplit(lngRow)) + Len(strChar)
  28.     Next
  29.    
  30.     For lngRow = LBound(arrInfo) To UBound(arrInfo)
  31.         rg.Characters(arrInfo(lngRow, 1), arrInfo(lngRow, 2)).Font.ColorIndex = arrInfo(lngRow, 3)
  32.         If lngRow <> 2 And lngRow <= 4 Then rg.Characters(arrInfo(lngRow, 1), arrInfo(lngRow, 2)).Font.Bold = True
  33.     Next
  34. End Function
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-13 07:31 , Processed in 0.031119 second(s), 16 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表