Moderatori: Anthony47, Flash30005
Function TrovaPrenotazioni(camera, giorno)
Dim rng As Range
Dim da As Date
Dim a As Date
Application.Volatile
With Sheets("Foglio1").Range("A:A")
Set rng = .Find(What:=camera, _
After:=.Cells(.Cells.Count), _
LookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False)
If Not rng Is Nothing Then
da = rng.Offset(0, 1).Value
a = rng.Offset(0, 2).Value
If giorno >= da And giorno <= a Then
TrovaPrenotazioni = "Prenotata"
Else
TrovaPrenotazioni = ""
End If
End If
End With
End Function
Private Sub Worksheet_Change(ByVal Target As Range)
Dim nRiga As Long
Dim da As Integer
Dim a As Integer
Dim rng As Range
Dim rng1 As Range
Dim cel As Range
If Not Intersect(Target, Range("c2:c1000")) Is Nothing Then
If Target.Rows.Count > 1 Then Exit Sub
If Target.Value = "" Then Exit Sub
With Sheets("Foglio1").Range("e2:e1000")
Set rng = .Find(What:=Target.Offset(0, -2).Value, _
After:=.Cells(.Cells.Count), _
LookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False)
If Not rng Is Nothing Then
nRiga = rng.Row
da = Day(Target.Offset(0, -1).Value)
a = Day(Target.Value)
Set rng1 = Range(Cells(nRiga, da + 5), Cells(nRiga, a + 5))
rng1.Interior.ColorIndex = xlNone
rng1.ClearContents
rng1.Interior.ColorIndex = 6
For Each cel In rng1
cel.Value = "P"
Next cel
End If
End With
End If
End Sub
Torna a Applicazioni Office Windows
inserisci valore in celle a seguito di condizione Autore: ucame |
Forum: Applicazioni Office Windows Risposte: 10 |
Aumenta altezza riga in base valore cella Autore: trittico69 |
Forum: Applicazioni Office Windows Risposte: 47 |
Inserire valore di una cella in altra cella con testo Autore: Ricky0185 |
Forum: Applicazioni Office Windows Risposte: 17 |
Visitano il forum: Nessuno e 14 ospiti