Posts by Rafael Lopes • 31 points
2 posts
-
1
votes1
answer39
viewsQ: VBA - I cannot reference there is a Range using the Cells method - ERROR 400
This first method gives me an ERROR 400 Worksheets("RELAT").Range(Cells(i, 3), Cells(i + 1, 12)).Value = Worksheets(mes).Range("P5:Y6").Value This second method works normally…
-
1
votes2
answers38081
viewsQ: Calculate vector size
How to calculate the vector size? My code: #include <stdio.h> #include <stdlib.h> int retornaMediana(int *vetor){ int tam=0; tam = sizeof(vetor); printf("TESTE: %d, %d,…