# Working with Multiple Sheets

Use Spread for ASP.NET to work with multiple sheets. Learn how to customize the appearance of the sheet names in documentation.

## Content

The component allows multiple sheets. Set the [Count](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetViewCollection.Count.html) property to specify the number of sheets. For information on adding sheets with the designer, see the [SheetView Collection Editor](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-spdesigner/spweb-SDInterface/spweb-SDCollEditors/spweb-SDCollEditors-SheetView).
![Multiple sheets](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/multiplesheets.png)
For information about the display of the sheet names in the sheet name buttons, refer to [Displaying the Sheet Names](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-interaction/spweb-interact-toolbars/spweb-sheettab-custom).
Formulas in a cell on one sheet can refer to a value or a cell on another sheet. For more information about formulas, refer to [Managing Formulas](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-formulas).
You can name the sheets. Use the [SheetName](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.SheetName.html) property in the [SheetView](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.html) class to name the sheet programmatically.
For information about adding a sheet, refer to [Adding a Sheet](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-appearSet/spweb-appearSheet/spweb-SheetAdd).

## Using Code

This example sets the number of sheets.

```csharp
FpSpread1.Sheets.Count = 2;
```

```vbnet
FpSpread1.Sheets.Count = 2
```

## See Also

[Count Property](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetViewCollection.Count.html)