Lacan
Board Regular
- Joined
- Oct 5, 2016
- Messages
- 228
- Office Version
- 365
- Platform
- Windows
Hello Guys,
Have a conflict with between 2 VBA´s code wich gets an error.
Explaining:
This first Code below changes the name of the sheet accordingly with the name written in cell B2 (after press Buton "Enter") in Sheet "NOME INSTITUIÇÃO":
Sub Enter()
ActiveSheet.Name = Range("B2").Value
End Sub
And this second code below combined with Sheet´s name "NOME INSTITUIÇÃO" doesn´t match because early this sheet´s name has been changed previously code one.
Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("NOME INSTITUIÇÃO").Activate
If Not Intersect(Target, Range("C22")) Is Nothing Then
If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub
Cells(22, 2).Value = Format(Date, "dd-mmm")
End If
End Sub
Can you please help?
More information feel free to ask.
Thanks again for all the help!
Have a conflict with between 2 VBA´s code wich gets an error.
Explaining:
This first Code below changes the name of the sheet accordingly with the name written in cell B2 (after press Buton "Enter") in Sheet "NOME INSTITUIÇÃO":
Sub Enter()
ActiveSheet.Name = Range("B2").Value
End Sub
And this second code below combined with Sheet´s name "NOME INSTITUIÇÃO" doesn´t match because early this sheet´s name has been changed previously code one.
Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("NOME INSTITUIÇÃO").Activate
If Not Intersect(Target, Range("C22")) Is Nothing Then
If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub
Cells(22, 2).Value = Format(Date, "dd-mmm")
End If
End Sub
Can you please help?
More information feel free to ask.
Thanks again for all the help!
F Cliente_MÉDICO_AGO.24.xlsb | |||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | |||
1 | |||||||||||||||||||||||
2 | Brick | - | Un. Tipo | ||||||||||||||||||||
3 | - | RANK | |||||||||||||||||||||
4 | Coordenador | Farmácias Brick | |||||||||||||||||||||
5 | Seguranças | - | |||||||||||||||||||||
6 | Horário de Visita | ||||||||||||||||||||||
7 | Observações | ||||||||||||||||||||||
8 | |||||||||||||||||||||||
9 | N.º Total Médicos | ||||||||||||||||||||||
10 | |||||||||||||||||||||||
11 | |||||||||||||||||||||||
12 | |||||||||||||||||||||||
13 | |||||||||||||||||||||||
14 | |||||||||||||||||||||||
15 | |||||||||||||||||||||||
16 | |||||||||||||||||||||||
17 | |||||||||||||||||||||||
18 | |||||||||||||||||||||||
19 | |||||||||||||||||||||||
20 | |||||||||||||||||||||||
21 | ANOTE O QUE DE RELEVANTE ACONTECEU NA PRESENTE ENTREVISTA E ESCREVA A FORMA COMO VAI COMEÇAR A PRÓXIMA ENTREVISTA DE VENDAS. | ||||||||||||||||||||||
22 | |||||||||||||||||||||||
23 | |||||||||||||||||||||||
24 | |||||||||||||||||||||||
25 | |||||||||||||||||||||||
26 | OBJECTIVO | ||||||||||||||||||||||
27 | |||||||||||||||||||||||
28 | |||||||||||||||||||||||
29 | |||||||||||||||||||||||
30 | |||||||||||||||||||||||
NOME INSTITUIÇÃO |
Cell Formulas | ||
---|---|---|
Range | Formula | |
I2 | I2 | =UNIQUE(FILTER(PAINEL_MÉDICO_VS_ALL[Brick],PAINEL_MÉDICO_VS_ALL[Centro]=B2," - ")) |
I3 | I3 | =XLOOKUP(I2,PAINEL_MÉDICO_VS_ALL[Brick],PAINEL_MÉDICO_VS_ALL[MAT Rank MKT]," - ",0) |
N5 | N5 | =IFERROR(LET(s,SORT(SORT(UNIQUE(FILTER(PAINEL_MÉDICO_VS_ALL[[NOME CLIENTE.1]:[DECIL_2]],PAINEL_MÉDICO_VS_ALL[Brick]=I2," - ")),2,-1),2,-1),IFNA(HSTACK(TAKE(s,5),DROP(s,5)),""))," - ") |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
P5:Q11 | Expression | =CONTAR.SE.S('BASE DADOS'!$K$3:$K$23000;P5;'BASE DADOS'!$M$3:$M$23000;"S") | text | NO |
N5:O11 | Expression | =CONTAR.SE.S('BASE DADOS'!$K$3:$K$23000;N5;'BASE DADOS'!$M$3:$M$23000;"S") | text | NO |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
B2 | List | ='BASE DADOS'!$B$2# |
C2:G2 | Any value |