Updates for v8.0

This commit is contained in:
Svetlana Maleeva 2023-12-26 18:38:48 +03:00
parent e38e26f433
commit e5bb6882c5
13 changed files with 102 additions and 2 deletions

View File

@ -12,4 +12,5 @@
<li><a class="leftmenu_spreadsheeteditor_removeduplicates" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-Spreadsheet-Editor/UsageInstructions/RemoveDuplicates.aspx")%>">Remove duplicates</a></li>
<li><a class="leftmenu_spreadsheeteditor_conditionalformatting" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-Spreadsheet-Editor/UsageInstructions/ConditionalFormatting.aspx")%>">Conditional formatting</a></li>
<li><a class="leftmenu_spreadsheeteditor_datavalidation" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-Spreadsheet-Editor/UsageInstructions/DataValidation.aspx")%>">Data validation</a></li>
<li><a class="leftmenu_spreadsheeteditor_goalseek" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-Spreadsheet-Editor/UsageInstructions/GoalSeek.aspx")%>">Goal Seek</a></li>
</ul>

View File

@ -0,0 +1,28 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Masters/Features/SpreadsheetEditor.master" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<%@ Register TagPrefix="cc" TagName="DataProcessingTag" Src="~/Controls/Help/Tags/data-processing/data-processing.ascx" %>
<script runat="server">
protected override void OnInit(EventArgs e)
{
PageTitle = PageCaption = DocHelpParcing.Title;
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<asp:Content ID="content3" ContentPlaceHolderID="breadstop" runat="server">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/VariousControls/TopControls/SpreadsheetEditorTop/SpreadsheetEditorTop.ascx" />
</asp:Content>
<asp:Content ID="Content1" ContentPlaceHolderID="guidescontent" runat="Server">
<div class="keyword_block">
<ul>
<li><cc:DataProcessingTag ID="DataProcessingTag1" runat="server" /></li>
</ul>
</div>
</asp:Content>
<asp:Content ID="content2" ContentPlaceHolderID="leftmenupage" runat="server">
<div class="teamlabeditorspage spreadsheeteditor spreadsheeteditor_ui goalseek se_rows">
</asp:Content>

View File

@ -31,6 +31,7 @@
<li><a href="../UsageInstructions/RemoveDuplicates.htm" onclick="onhyperlinkclick(this)">remove duplicates</a> from a data range,</li>
<li><a href="../UsageInstructions/GroupData.htm" onclick="onhyperlinkclick(this)">group and ungroup</a> data,</li>
<li>set <a href="../UsageInstructions/DataValidation.htm" onclick="onhyperlinkclick(this)">data validation</a> parameters,</li>
<li>find the <a href="../UsageInstructions/GoalSeek.htm" onclick="onhyperlinkclick(this)">right input</a> for the value that you want,</li>
<li>get data <a href="../HelpfulHints/ImportData.htm" onclick="onhyperlinkclick(this)">from TXT/CSV file</a>,</li>
<li>view other files the spreadsheet is <a href="../UsageInstructions/AddExternalLinks.htm" onclick="onhyperlinkclick(this)">linked to</a> via the <b>External Links</b> button.</li>
</ul>

View File

@ -30,6 +30,7 @@
<li><a href="../UsageInstructions/AlignText.htm" onclick="onhyperlinkclick(this)">align data</a> in cells,</li>
<li>add <a href="../UsageInstructions/AddBorders.htm" onclick="onhyperlinkclick(this)">cell borders</a> and <a href="../UsageInstructions/MergeCells.htm" onclick="onhyperlinkclick(this)">merge cells</a>,</li>
<li>insert <a href="../UsageInstructions/InsertFunction.htm" onclick="onhyperlinkclick(this)">functions</a> and create <a href="../UsageInstructions/UseNamedRanges.htm" onclick="onhyperlinkclick(this)">named ranges</a>,</li>
<li>use the <a href="../UsageInstructions/CopyPasteData.htm#series" onclick="onhyperlinkclick(this)">Series</a> tool to fill in data ranges,</li>
<li><a href="../UsageInstructions/SortData.htm" onclick="onhyperlinkclick(this)">sort and filter</a> data,</li>
<li>change <a href="../UsageInstructions/ChangeNumberFormat.htm" onclick="onhyperlinkclick(this)">the number format</a>,</li>
<li>add or remove <a href="../UsageInstructions/InsertDeleteCells.htm" onclick="onhyperlinkclick(this)">cells, rows, columns</a>,</li>

View File

@ -135,6 +135,27 @@
<p><img alt="Select from drop-down list" src="../images/selectfromlist.png" /></p>
<p>Select one of the available text values to replace the current one or fill an empty cell.</p>
<h3 id="series">Fill cells using the Series tool</h3>
<ol>
<li>Select a cell/cell range containing the initial data and some empty cells in the necessary direction. Click the <b>Fill</b> icon on the <b>Home</b> tab of the top toolbar and choose the <b>Series</b> option.
<p>You can also use the <b>Down</b>, <b>Right</b>, <b>Up</b>, <b>Left</b> options to fill the selected empty cells.</p>
<p><img alt="Series - menu" src="../images/series_menu.png" /></p>
<p>There is another way to access the <b>Series</b> window. You can select the initial data, move the mouse cursor over the fill handle in the right lower corner of the cell, click and hold the <b>right mouse button</b> on the fill handle, then drag down, up, right, or left and release the right mouse button - the context menu appears with the <b>Series</b> option.</p>
<p>You can also use the following options to fill the selected empty cells: <b>Copy cells</b> is used to fill cells with the same values, <b>Fill series</b> is used to fill cells with a series using the default step value, <b>Fill days</b> is used to fill cells with a series of dates, <b>Linear trend</b> is available if more than one starting value is selected, is used to add the default step value to the starting value and then to each subsequent value, <b>Growth trend</b> is available if more than one starting value is selected, is used to multiply the starting value by the default step value.</p>
<p><img alt="Series - context menu" src="../images/series_context_menu.png" /></p>
</li>
<li>In the <b>Series</b> dialog window, select the necessary options and click <b>OK</b>:
<p><img alt="Series - window" src="../images/series_window.png" /></p>
<ul>
<li><b>Series in</b>: <em>Rows</em>, <em>Columns</em> - select the direction to fill cells.</li>
<li><b>Type</b>: <em>Linear</em> is used to add the step value to the starting value and then to each subsequent value, <em>Growth</em> is used to multiply the starting value by the step value, <em>Date</em> is used to fill cells with a series of dates, <em>AutoFill</em> is used to fill cells with the same data.</li>
<li><b>Date unit</b>: <em>Day</em>, <em>Weekday</em>, <em>Month</em>, <em>Year</em> - select the date unit you want to increase the series by.</li>
<li><b>Trend</b> - check this box if there is more than one starting value in the series.</li>
<li><b>Step value</b> - select the numerical value you want to increase the series by. By default, it is set to 1.</li>
<li><b>Stop value</b> - specify the last value in the series.</li>
</ul>
</li>
</ol>
</div>
</body>
</html>

View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>Goal Seek</title>
<meta charset="utf-8" />
<meta name="description" content="Set data validation parameters to control further spreadsheet editing" />
<link type="text/css" rel="stylesheet" href="../../../../../../common/main/resources/help/editor.css" />
<link type = "text/css" rel = "stylesheet" href = "../../images/sprite.css" />
<script type="text/javascript" src="../callback.js"></script>
<script type="text/javascript" src="../search/js/page-search.js"></script>
</head>
<body>
<div class="mainpart">
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Goal Seek</h1>
<p>ONLYOFFICE <a href="https://www.onlyoffice.com/spreadsheet-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)"><b>Spreadsheet Editor</b></a> offers a <b>Goal Seek</b> feature that allows you to determine which numbers should be substituted into the formula to obtain the desired and previously known result.</p>
<ol>
<li>Open the <b>Data</b> tab and click the <b>Goal Seek</b> icon on the top toolbar.</li>
<li>In the opened <b>Goal Seek</b> window, select the necessary options:
<p><img alt="Goal Seek" src="../images/goal_seek.png" /></p>
<ul>
<li><b>Set cell</b> - enter the reference to the cell that contains a formula. You can use the <div class="icon icon-changerange"></div> icon to select the cell.</li>
<li><b>To value</b> - enter the result you want to get in the cell containing the formula.</li>
<li><b>By changing cell</b> - enter the reference to the cell that that contains the value you want to change. You can use the <div class="icon icon-changerange"></div> icon to select the cell. This cell must be referenced by the formula located in the cell which you specified in the <b>Set cell</b> field.</li>
</ul>
</li>
<li>Click <b>OK</b>.</li>
<li>The  <b>Goal Seek Status</b> window will display the result.
<p><img alt="Goal Seek status" src="../images/goal_seek_status.png" /></p>
</li>
<li>Click <b>OK</b> to replace the values in the the cells specified in the <b>Set cell</b> and <b>By changing cell</b> fields.</li>
</ol>
</div>
</body>
</html>

View File

@ -15,8 +15,18 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Insert charts</h1>
<h3>Insert a chart</h3>
<p>To insert a chart in the <a href="https://www.onlyoffice.com/spreadsheet-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)"><b>Spreadsheet Editor</b></a>,</p>
<h3>Insert a recommended chart</h3>
<p>The easiest way to insert a chart in the <a href="https://www.onlyoffice.com/spreadsheet-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)"><b>Spreadsheet Editor</b></a> is to use the <b>Recommended Chart</b> tool which suggests using certain types of charts depending on the selected data as well as displays preview for all types of charts.</p>
<ol>
<li>Select the cell range that contain the data you wish to use for the chart.</li>
<li>Switch to the <b>Insert</b> tab of the top toolbar.</li>
<li>Click the <b>Recommended Chart</b> icon on the top toolbar.</li>
<li>Switch between the recommended chart types to see how the chart will look like. You can also use tabs on the left to preview other chart types.</li>
<li>When the chart type is selected, click <b>OK</b>.</li>
</ol>
<p><img alt="Recommended Chart" src="../images/recommendedchart.png" /></p>
<h3>Insert and adjust a chart manually</h3>
<p>To insert a chart and manually adjust its parameters,</p>
<ol>
<li>Select the cell range that contain the data you wish to use for the chart.</li>
<li>Switch to the <b>Insert</b> tab of the top toolbar.</li>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB