Posts by Lucas Frediani • 1 point
5 posts
-
0
votes1
answer32
viewsQ: VBA to seal cell, complete
Good evening, I am preparing a VBA record sheet and I would like it, when selecting a specific cell, to be filled with an X and delete the other possible alternatives ... If possible, I would like…
-
0
votes2
answers20
viewsA: If cell changed, move old value to side
Option Explicit Private Const H As Long = 8 Private Sub Worksheet_change(Byval Target As Range) On Error GoTo CleanExit Application.EnableEvents = False Dim Coluna As Long Dim linha As Long Coluna =…
-
0
votes2
answers20
viewsA: If cell changed, move old value to side
I was using the following code.. but he was copying the current value, wanted it to copy the last existing value... and wanted it to work only if the H column is not empty...
-
-1
votes2
answers20
viewsQ: If cell changed, move old value to side
I’m starting to use VBA with the office package, as I still know little I’m having difficulties to get this functionality. I was trying to do something simple and I needed help to understand how it…
-
-3
votes3
answers1264
viewsQ: Redirect user according to login name
I’m trying to put a login system, where whoever accesses your login will have access to a different page. I am using php and mysql, but I am very beginner in the subject. I wanted the system to work…