Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/10/2008, 12:45
[email protected]
 
Fecha de Ingreso: octubre-2005
Mensajes: 405
Antigüedad: 18 años, 5 meses
Puntos: 1
overflow Horizontal

No se si este tema corresponde a este foro pero si no es asi, disculpen las molestias.
Necesito hacer una lista de ventas mensual donde:
a) Vendedor quede fijo.
b) Días del Mes (puede ser 1 y/o máximo 26).
c) Monto Venta quede fijo.

Codigo ilustrativo de lo que necesito:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin t&iacute;tulo</title>
<style type="text/css">
<!--
#linea {border-collapse:collapse; border-color:#000066;}
.Estilo1 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #FFFFFF; }
.Estilo2 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #000000; }
.Estilo3 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8px; color: #000000; }
-->
</style>
</head>

<body>

<div align="center">
<span style="width: 100%; font-size: 18px; font-family: Arial Black; color: #000066; Filter: Wave(Add=0, Freq=2, LightStrength=20, Phase=10, Strength=5)">VENTAS OCTUBRE 2008</span><br /><span style="width: 100%; font-size: 12px; font-family: Arial Black; color: #000066; Filter: Wave(Add=0, Freq=2, LightStrength=20, Phase=10, Strength=5)"><i>Local Lira</i></span>
</div><br />
<table width=100% border=1 cellspacing=0 cellpadding=2 id=linea>
<tr class=Estilo1 bgcolor=#000066>
<td width=15% align=center id=linea>Vendedor</td>
<td width=75% align=center id=linea>
<!-- Cantidad de Columnas varia segun dias en curso, del mes -->
<table width=100% border=0 cellspacing=0 cellpadding=2>
<tr class=Estilo1>
<td width=09% align=center>01</td>
<td width=09% align=center>02</td>
<td width=09% align=center>03</td>
<td width=09% align=center>04</td>
<td width=09% align=center>05</td>
<td width=09% align=center>06</td>
<td width=09% align=center>07</td>
<td width=09% align=center>08</td>
<td width=09% align=center>09</td>
<td width=09% align=center>10</td>
<td width=09% align=center>11</td>
</tr>
</table>
</td>
<td width=10% align=center id=linea>Tot-Neto</td>
</tr>
<tr class=Estilo2>
<td width=15% align=left id=linea>Luis Morales</td>
<td width=75% align=center id=linea>
<table width=100% border=0 cellspacing=0 cellpadding=2>
<tr class=Estilo3>
<td width=09% align=right>7.000</td>
<td width=09% align=right>8.000</td>
<td width=09% align=right>3.000</td>
<td width=09% align=right>14.000</td>
<td width=09% align=right><hr></td>
<td width=09% align=right>2.000</td>
<td width=09% align=right>1.200</td>
<td width=09% align=right>7.800</td>
<td width=09% align=right>9.000</td>
<td width=09% align=right>10.000</td>
<td width=09% align=right>12.000</td>
</tr>
</table>
</td>
<td width=10% align=right id=linea>74.000</td>
</tr>
<tr class=Estilo2>
<td width=15% align=left id=linea>Francisco Espinoza</td>
<td width=75% align=center id=linea>&nbsp;</td>
<td width=10% align=right id=linea>148.300</td>
</tr>
<tr class=Estilo2>
<td width=15% align=left id=linea>Juan Perez</td>
<td width=75% align=center id=linea>&nbsp;</td>
<td width=10% align=right id=linea>35.000</td>
</tr>
<tr class=Estilo2>
<td width=15% align=left id=linea>Rodrigo Diaz</td>
<td width=75% align=center id=linea>&nbsp;</td>
<td width=10% align=right id=linea>998.700</td>
</tr>
<tr class=Estilo2>
<td width=15% align=left id=linea>Miguel Agurto</td>
<td width=75% align=center id=linea>&nbsp;</td>
<td width=10% align=right id=linea>10.000</td>
</tr>
<tr>
<td width=15% align=left id=linea bgcolor=#000066>&nbsp;</td>
<td width=75% align=center id=linea>< ------ SCROLL HORIZONTAL AQUI ------></td>
<td width=10% align=right id=linea class=Estilo1 bgcolor=#000066>1.266.000</td>
</tr>
</table>
</body>
</html>

La barra se desplaze junto con los titulos de la columna del centro.
La verdad del tema nose nada, por eso necesito saber de todo un poco, porque los datos que obtendre son dinamicos hoy puede ser 1 vendedor 1 mes mañana podrian ser 20 vendedores y 12 meses, como hacerlo?

¿Como lograr esto?
¿Algún ejemplo?
¿Alguna idea al respecto?

Se agradece cualquier cometario.

Última edición por [email protected]; 11/10/2008 a las 10:22