Posts by Clovis Daniel Costa • 1 point
3 posts
-
0
votes2
answers298
viewsA: VBA - Count filtered column lines and display the value in a cell
I would settle this simply like this: Sub somarFiltradas() Dim cont As Integer Dim i As Integer cont = 0 i = 3 While Cells(i, 4).Value <> "" If Cells(i, 4).EntireRow.Hidden = False Then cont =…
-
0
votes2
answers40
viewsA: Compare the value of a cell with the name of a tab in VBA
Hello. I adapted a spreadsheet as a suggestion to meet your needs following your requirements. You must register employees as you normally do, in the List spreadsheet. As for positions, you must…
-
0
votes0
answers76
viewsQ: Heroku Postgresql - Error Status 500 in second query
I created a Node REST API that requests a Postgresql in Heroku. I use Postman to test the requests. It is working ok on the first request (Status: 200). Follow the Heroku log: But when I try to do…