Posts by Ricarte • 51 points
13 posts
-
0
votes0
answers15
viewsQ: How to write slide page in vba
I am creating the slidemaster in vba for a ppt presentation and in one of the text boxes that I am creating I want to write the slide number, but I am unable to find the function that allows me to…
-
-1
votes1
answer88
viewsQ: Load java file
I need to upload a file . xlsx that is in a directory to my tool. What API or implementation can I use to upload?
-
0
votes1
answer40
viewsQ: Aggregating row-by-row information in excel column
Good morning My goal is to transpose in vba these 2 lines to (in this case 6 lines) I mean, what I want is to repeat all the information but then I just want to have a column of privileges even if…
-
1
votes2
answers2022
viewsQ: Add paragraph in vba
I have several cells I want to concatenate to send an email through excel Turns out every cell I wish I had line breaks but I’m not getting I’ve used Wraptext and Chr() but it’s not working, someone…
-
0
votes2
answers107
viewsQ: I have a password in excel and want to change it in vba
If Me.boxPassword.Value = "12345" Then Unload Me Sheets("Configuração").Visible = True Sheets("Configuração").Select Else Me.Hide Retry = MsgBox("Passe incorreta, Tentar outra vez?", vbYesNo,…
-
-1
votes1
answer282
viewsQ: How to make a VBA print
I have an excel full of information But I want to separate the information Imagining that I have in a cell A-ABC-DEF How do I get ABC to appear through a formula in VBA
-
0
votes1
answer66
viewsQ: How to fetch excel sheet info to drop down in Visual Basic
I have to dropdown with information that I already have in an excel sheet in Visual Basic, how do I get that same information? And make sure there’s no repeat information? Example: colunaA a a a b b…
-
-1
votes1
answer41
viewsQ: How can Charts information be sql querys?
My doubt consists in creating a Chart of lines where each value is a query that I have already built! I am using phpmyadmin which has BD (imported from an sql file) And I’m wearing: link…
-
-1
votes1
answer381
viewsQ: How to check null fields in sql?
The Trigger I have to do: A user can only classify an offer if he has purchased it (reservation with estado = pago). On the other hand one of the two attributes classification and comment has to be…
-
1
votes1
answer171
viewsQ: How to add a left 0 to a datetime
I need to be able to add a 0 to the left in the hours when sql only takes 3 digits or it is from midnight to 9 am so that the information is ordered! Because if not the information I have is in the…
-
0
votes1
answer117
viewsQ: How do I edit the scroll bar of a select tag?
<select id="select"> <option value="week"> Previsão Semanal</option> <option value="daily"> Previsão Diária</option> </select> I have this code here and in css…
-
-2
votes1
answer453
viewsQ: How do I make a cell to be a button in a table?
<div id=table> <tr id="tablebottom"> <th> <h5>Hoje</h5> </th> <th> <h5>Amanhã</h5> </th> </tr> </div> My question is how to…
-
3
votes3
answers4171
viewsQ: How to put columns of a table all the same size?
Temperature Precipitation Wind Atmospheric Pressure Second Tuesday Fourth Fifth Sixth Saturday Domingo What I wanted was to get all the columns to be the same size regardless of the name of the day…