Reports Elements
Pie in the report: It refers to the first page of the
report, namely the cover of the report
Page Header: Data that will appear on every page of
the report, specifically at the top
Description: This section includes the various records
relating to the header of the page, which can be more
than one, would like a subform within each page of the
report.
Footer: It has the same function as the page header,
but the data appear at the bottom
Pie in the report: It refers to the first page of the
Group: One of the options of a report of access is more
important to show the pooled data, selecting one or
more subgroups. By pooling data so as not to repeat
data in our report. For example, if we want to show
the data from a table with properties throughout Spain,
and we want the grouping according to the province,
are we going to do this on the left side of the form
in design view and with the right button to give you
the option and Order Grouping:
|
IF (me.valorNumerico > 50) then
me.controls("valorTextual").forecolor = 255
end if |
|
| |
IF (me.valorNumerico > 50) then
me.controls("valorTextual").forecolor = 255
else
me.controls("valorTextual").forecolor = 0
end if
|
|
the code to include in the footnote section of serious
| |
if (me.valorNum > 50) then
etiquetapie.caption = "alerta, uno de los valores sobrepasa limite"
end if |
|
| |
incluir en la seccion pie de pagina
etiquetapie.caption = "alerta, uno de los valores........"
end if
|
|
Etiqueta.caption : me.page |
|
|
if (me.page = 1) then
etiqueta.visible = false
else
etiqueta.visible = true
end if |
|
|