Posts by henriquew • 49 points
4 posts
-
0
votes2
answers220
viewsQ: Clientdataset for Excel
I’m exporting a clientdataset for excel with the Clientdatasettoexcelfile function, but one of the information is CPF/CNPJ ex: 00112312312, that is, it contains zeros(0) at the beginning of the…
-
1
votes2
answers574
viewsQ: Calculate Geometric Mean in SQL Query
Table Example Campo - Valor A - 30,21 B - 15,03 C - 5,06 B - 10,20 B - 12,89 C - 1,12 Geometric average calculation A = (30,21)^1/1 B = (15,03*10,20*12,89)^1/3 C = (5,06*1,12)^1/2 Results A = 30,21…
-
0
votes1
answer100
viewsQ: How to use http://loudev.com/ (multiselect.js) in PHP, or how to select items from a select Multiple
<table name="tbListagem" id="tbListagem" class="table table-striped table-bordered"> <thead> <tr class="info"> <th>Código </th> <th>Nome </th>…
-
3
votes1
answer1636
viewsQ: Django - Getting form information
I have a template called listaarquivos.html where a table with information of an object of the models.py called JOB. However, now I need to filter this table by date. I then inserted two inputs in…