-
Notifications
You must be signed in to change notification settings - Fork 11
983001: Changes in Editing,filtering and formulas #1430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 11 commits
30ff31b
b909c15
062ea1a
1da693a
d9a4524
f631c44
49b39ff
e4d798f
f29577d
5696882
ace748f
bc4b7e7
dadfbc7
f232ccd
910ee60
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,37 +7,37 @@ control: Spreadsheet | |
documentation: ug | ||
--- | ||
|
||
# Formulas in Blazor Spreadsheet component | ||
# Formulas in Blazor Spreadsheet Component | ||
|
||
**Formulas** enable calculations within a worksheet by referencing cells from either the same worksheet or other worksheets in the workbook. | ||
|
||
## Formula Bar | ||
|
||
The **Formula Bar** simplifies editing or entering cell data. The [ShowFormulaBar](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_ShowFormulaBar) property is used to enable or disable the **Formula Bar**. The default value of the `ShowFormulaBar` property is **true**. | ||
|
||
### Working with Formulas via the UI | ||
### Working With Formulas via The UI | ||
|
||
Formulas in the Syncfusion Blazor Spreadsheet can be accessed and inserted using the following methods: | ||
|
||
* Select **Insert Function** from the **Formulas** tab in the Ribbon toolbar. In the **Insert Function** dialog, choose a category, then select the desired function to insert it into the selected cell. | ||
* Select **Insert Function** from the **Formulas** tab in the Ribbon toolbar. In the **Insert Function** dialog, choose a category, then select the desired function to insert it into the selected cell. | ||
|
||
 | ||
 | ||
|
||
* Type **(=)** in a cell or the **Formula Bar** to display a list of available functions. Select a function from the list to insert it into the cell. | ||
* Type **(=)** in a cell or the **Formula Bar** to display a list of available functions. Select a function from the list to insert it into the cell. | ||
|
||
 | ||
 | ||
|
||
* Click the **Insert Function** button next to the **Formula Bar** to open the **Insert Function** dialog, which provides the same categorized function list and insertion options as the Ribbon toolbar. | ||
* Click the **Insert Function** button next to the **Formula Bar** to open the **Insert Function** dialog, which provides the same categorized function list and insertion options as the Ribbon toolbar. | ||
|
||
 | ||
 | ||
|
||
## Calculation Mode | ||
|
||
The Spreadsheet includes **Calculation Option** functionality, similar to Excel's calculation settings, which controls when and how formulas are recalculated. The available modes are: | ||
|
||
* **Automatic**: Formulas recalculate instantly when any dependent cell changes. | ||
* **Automatic**: Formulas recalculate instantly when any dependent cell changes. | ||
|
||
* **Manual**: Formulas recalculate only when explicitly triggered using the **Calculate Sheet** or **Calculate Workbook** options. | ||
* **Manual**: Formulas recalculate only when explicitly triggered using the **Calculate Sheet** or **Calculate Workbook** options. | ||
|
||
### Automatic | ||
|
||
|
@@ -61,43 +61,43 @@ If cell **C1** contains the formula **=A1 + B1**, and the value in **A1** or **B | |
|
||
## Named Ranges | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some places headings were added in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changes updated |
||
The **Named Ranges** support allows to assign a meaningful name to a specific cell or range of cells. This simplifies referencing and managing data within the Spreadsheet. Named Ranges can also be used in formulas, making them easier to read, understand, and maintain. | ||
The **Named Ranges** support allows you to assign a meaningful name to a specific cell or range of cells. This simplifies referencing and managing data within the Spreadsheet. Named Ranges can also be used in formulas, making them easier to read, understand, and maintain. | ||
|
||
N> Named Ranges can be defined only for cells or ranges that contain values. | ||
|
||
### Creating Named Ranges via the UI | ||
### Creating Named Ranges via The UI | ||
|
||
SasthaPrathap marked this conversation as resolved.
Show resolved
Hide resolved
|
||
**Named Ranges** can be created using the following methods: | ||
|
||
* Select the desired range of cells and enter a name in the **Name Box**. | ||
* Select the desired range of cells and enter a name in the **Name Box**. | ||
|
||
* Select the range of cells, then click the **Name Manager** button in the Ribbon toolbar under the **Formulas** tab. | ||
* Select the range of cells, then click the **Name Manager** button in the Ribbon toolbar under the **Formulas** tab. | ||
|
||
 | ||
 | ||
|
||
### Editing or Deleting Named Ranges | ||
### Editing Or Deleting Named Ranges | ||
SasthaPrathap marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
**Named Ranges** are managed through the **Name Manager** dialog, which supports editing and deletion. | ||
|
||
To edit a Named Range: | ||
|
||
* Open the **Name Manager** dialog. | ||
* Open the **Name Manager** dialog. | ||
|
||
* Select the Named Range to be edited. | ||
* Select the Named Range to be edited. | ||
|
||
* Click the **Edit** icon. | ||
* Click the **Edit** icon. | ||
|
||
* Modify the name, range, or scope as needed. | ||
* Modify the name, range, or scope as needed. | ||
|
||
* Click the **Update Range** button, then click **OK** button to save changes. | ||
|
||
To delete a Named Range: | ||
|
||
* Open the **Name Manager** dialog. | ||
1. Open the **Name Manager** dialog. | ||
|
||
* Select the Named Range to be deleted. | ||
2. Select the Named Range to be deleted. | ||
|
||
* Click the **Delete** icon, then click **OK** button to confirm. | ||
3. Click the **Delete** icon, then click the **OK** button to confirm. | ||
|
||
N> Deleting a Named Range used in formulas may cause formula errors. Ensure the Named Range is not referenced before deleting it. | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.