Question : Auto Hide Table Columns

I have a table and I want to automaticly hide the column if there is nothing in the header. Can CSS or Javascript do this on load?

    <table>
      <tr>
        <td>
          Hello
        </td>
        <td>
          There
        </td>
        <td>
        </td>
      </tr>
    </table>

Answer : Auto Hide Table Columns

Seems Jet doesn't like subqueries when there is no FROM clause in the main query.  Try:
1:
2:
3:
4:
5:
6:
SELECT TOP 1 "row" AS Label,
    (SELECT SUM(commission) FROM [transactions] WHERE type=0 OR type=2) AS SumCommission0or2,
    (SELECT count(*) FROM users) AS UserCount,
    (SELECT count(*) FROM transactions WHERE type = 0) AS TxnCount,
    (SELECT SUM(commission) FROM [transactions] WHERE type=1) AS SumCommission1
FROM [transactions]
Random Solutions  
 
programming4us programming4us