Mrrrr's Forum (VIEW ONLY)
Un forum care ofera solutii pentru unele probleme legate in general de PC. Pe langa solutii, aici puteti gasi si alte lucruri interesante // A forum that offers solutions to some PC related issues. Besides these, here you can find more interesting stuff.
|
Lista Forumurilor Pe Tematici
|
Mrrrr's Forum (VIEW ONLY) | Reguli | Inregistrare | Login
POZE MRRRR'S FORUM (VIEW ONLY)
Nu sunteti logat.
|
Nou pe simpatie: Popa Bianca
 | Femeie 25 ani Valcea cauta Barbat 25 - 63 ani |
|
TRaP
Moderator
Inregistrat: acum 7 ani
Postari: 846
|
|
The following code is based on this topic and it is the first step to be done, but using VBA (by pressing a button)
Sub Z_1InsertCondFormat() Application.ScreenUpdating = False
Dim rng As Range
With ActiveSheet
On Error Resume Next Set rng = Application.InputBox(prompt:="Selecteaza zona in care doresti formatare conditionata:", Type:=8)
If rng Is Nothing Then MsgBox "Ai anulat selectia." Else rng.Select
Dim ActiveCell As String ActiveCell = Excel.ActiveCell.Address(0, 0)
Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=OR(CELL(""row"")=CELL(""row"";" & ActiveCell & "))" Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority With Selection.FormatConditions(1).Interior .PatternColorIndex = xlAutomatic .Color = 65535 'or use RGB: .Color = RGB(255, 0, 0) for color red for example .TintAndShade = 0 End With With Selection.FormatConditions(1).Font .Bold = True End With Selection.FormatConditions(1).StopIfTrue = False End If
End With
Application.ScreenUpdating = True End Sub |
Modificat de TRaP (acum 6 ani)
|
|
pus acum 6 ani |
|