=text(a1;"dd/mm/aa") - pt
=text(a1;"dd/mm/yy") - en
Ricardo Silva
segunda-feira, 19 de junho de 2017
quarta-feira, 4 de janeiro de 2017
Update query com dados de outra tabela
UPDATE Customers, Table1
SET Customers.Status = "Inactivo"
WHERE customers.id = table1.f1
SET Customers.Status = "Inactivo"
WHERE customers.id = table1.f1
quarta-feira, 13 de abril de 2016
Identificar se uma célula tem Maiusculas
=NOT(EXACT(LOWER(B545);B545))
terça-feira, 5 de abril de 2016
Inserir dados de uma tabela SQL noutra tabela SQL
Insert into [SQLServerTable]
Select * FROM [SQLServerTableB]
Select * FROM [SQLServerTableB]
sexta-feira, 26 de fevereiro de 2016
Extrair endereço de email de uma string com uma fórmula no Excel
=TRIM(RIGHT(SUBSTITUTE(LEFT(A1,FIND (" ",A1&" ",FIND("@",A1))-1)," ", REPT(" ",LEN(A1))),LEN(A1)))
quinta-feira, 22 de outubro de 2015
Combining files in Notepad++
Python script para o notepad++ versão 1.0.8 (https://sourceforge.net/projects/npppythonscript/files/Python%20Script%201.0.8.0/)
Código de script
console.show()
console.clear()
files = notepad.getFiles()
notepad.new()
newfile = notepad.getCurrentFilename()
for i in range(len(files) - 1):
console.write("Copying text from %s\n" % files[i][0])
notepad.activateFile(files[i][0])
text = editor.getText()
notepad.activateFile(newfile)
editor.appendText(text)
editor.appendText("\n")
console.write("Combine Files operation complete.")
segunda-feira, 13 de abril de 2015
Subscrever:
Comentários (Atom)