Merge branch 'develop' into feature/sse-function-wizard
This commit is contained in:
commit
8f5c17ba89
|
@ -52,7 +52,7 @@ define([
|
||||||
'<div class="asc-synchronizetip">',
|
'<div class="asc-synchronizetip">',
|
||||||
'<div class="tip-arrow <%= scope.placement %>"></div>',
|
'<div class="tip-arrow <%= scope.placement %>"></div>',
|
||||||
'<div>',
|
'<div>',
|
||||||
'<div class="tip-text" style="width: 260px;"><%= scope.text %></div>',
|
'<div class="tip-text"><%= scope.text %></div>',
|
||||||
'<div class="close img-commonctrl"></div>',
|
'<div class="close img-commonctrl"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<% if ( scope.showLink ) { %>',
|
'<% if ( scope.showLink ) { %>',
|
||||||
|
@ -105,6 +105,10 @@ define([
|
||||||
applyPlacement: function () {
|
applyPlacement: function () {
|
||||||
var showxy = this.target.offset(),
|
var showxy = this.target.offset(),
|
||||||
innerHeight = Common.Utils.innerHeight();
|
innerHeight = Common.Utils.innerHeight();
|
||||||
|
|
||||||
|
if (this.placement == 'document') {
|
||||||
|
// this.cmpEl.css('top', $('#editor_sdk').offset().top);
|
||||||
|
} else
|
||||||
if (this.placement == 'top')
|
if (this.placement == 'top')
|
||||||
this.cmpEl.css({bottom : innerHeight - showxy.top + 'px', right: Common.Utils.innerWidth() - showxy.left - this.target.width()/2 + 'px'});
|
this.cmpEl.css({bottom : innerHeight - showxy.top + 'px', right: Common.Utils.innerWidth() - showxy.left - this.target.width()/2 + 'px'});
|
||||||
else {// left or right
|
else {// left or right
|
||||||
|
|
|
@ -219,25 +219,34 @@ define([
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function _centre() {
|
function _readDocumetGeometry() {
|
||||||
if (window.innerHeight == undefined) {
|
if (window.innerHeight == undefined) {
|
||||||
var main_width = document.documentElement.offsetWidth;
|
var width = document.documentElement.offsetWidth,
|
||||||
var main_height = document.documentElement.offsetHeight;
|
height = document.documentElement.offsetHeight;
|
||||||
} else {
|
} else {
|
||||||
main_width = Common.Utils.innerWidth();
|
width = Common.Utils.innerWidth();
|
||||||
main_height = Common.Utils.innerHeight();
|
height = Common.Utils.innerHeight();
|
||||||
}
|
}
|
||||||
|
height -= Common.Utils.InternalSettings.get('window-inactive-area-top');
|
||||||
|
return {width: width, height: height, top: Common.Utils.InternalSettings.get('window-inactive-area-top')};
|
||||||
|
}
|
||||||
|
|
||||||
|
function _centre() {
|
||||||
|
var main_geometry = _readDocumetGeometry(),
|
||||||
|
main_width = main_geometry.width,
|
||||||
|
main_height = main_geometry.height;
|
||||||
|
|
||||||
if (this.initConfig.height == 'auto') {
|
if (this.initConfig.height == 'auto') {
|
||||||
var win_height = parseInt(this.$window.find('.body').css('height'));
|
var win_height = parseInt(this.$window.find('.body').css('height'));
|
||||||
this.initConfig.header && (win_height += parseInt(this.$window.find('.header').css('height')));
|
this.initConfig.header && (win_height += parseInt(this.$window.find('.header').css('height')));
|
||||||
} else
|
} else {
|
||||||
win_height = this.initConfig.height;
|
win_height = this.initConfig.height;
|
||||||
|
win_height > main_height && (win_height = main_height);
|
||||||
|
}
|
||||||
|
|
||||||
var win_width = (this.initConfig.width=='auto') ? parseInt(this.$window.find('.body').css('width')) : this.initConfig.width;
|
var win_width = (this.initConfig.width=='auto') ? parseInt(this.$window.find('.body').css('width')) : this.initConfig.width;
|
||||||
|
|
||||||
var top = Common.Utils.InternalSettings.get('window-inactive-area-top') +
|
var top = main_geometry.top + Math.floor((parseInt(main_height) - parseInt(win_height)) / 2);
|
||||||
Math.floor((parseInt(main_height) - parseInt(win_height)) / 2);
|
|
||||||
var left = Math.floor((parseInt(main_width) - parseInt(win_width)) / 2);
|
var left = Math.floor((parseInt(main_width) - parseInt(win_width)) / 2);
|
||||||
|
|
||||||
this.$window.css('left',left);
|
this.$window.css('left',left);
|
||||||
|
@ -245,18 +254,21 @@ define([
|
||||||
}
|
}
|
||||||
|
|
||||||
function _setVisible() {
|
function _setVisible() {
|
||||||
if (window.innerHeight == undefined) {
|
var main_geometry = _readDocumetGeometry(),
|
||||||
var main_width = document.documentElement.offsetWidth;
|
main_width = main_geometry.width,
|
||||||
var main_height = document.documentElement.offsetHeight;
|
main_height = main_geometry.height;
|
||||||
} else {
|
|
||||||
main_width = Common.Utils.innerWidth();
|
|
||||||
main_height = Common.Utils.innerHeight();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.getLeft() + this.getWidth() > main_width)
|
if (this.getLeft() + this.getWidth() > main_width)
|
||||||
this.$window.css('left', main_width - this.getWidth());
|
this.$window.css('left', main_width - this.getWidth());
|
||||||
if (this.getTop() + this.getHeight() > main_height)
|
|
||||||
this.$window.css('top', main_height - this.getHeight());
|
if (this.getTop() < main_geometry.top )
|
||||||
|
this.$window.css('top', main_geometry.top);
|
||||||
|
else
|
||||||
|
if (this.getTop() + this.getHeight() > main_height) {
|
||||||
|
if (main_height - this.getHeight() < 0)
|
||||||
|
this.$window.css('top', main_geometry.top);
|
||||||
|
else this.$window.css('top', main_geometry.top + main_height - this.getHeight());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function _getTransformation(end) {
|
function _getTransformation(end) {
|
||||||
|
@ -278,16 +290,15 @@ define([
|
||||||
this.dragging.initx = event.pageX*zoom - this.getLeft();
|
this.dragging.initx = event.pageX*zoom - this.getLeft();
|
||||||
this.dragging.inity = event.pageY*zoom - this.getTop();
|
this.dragging.inity = event.pageY*zoom - this.getTop();
|
||||||
|
|
||||||
if (window.innerHeight == undefined) {
|
var main_geometry = _readDocumetGeometry(),
|
||||||
var main_width = document.documentElement.offsetWidth;
|
main_width = main_geometry.width,
|
||||||
var main_height = document.documentElement.offsetHeight;
|
main_height = main_geometry.height;
|
||||||
} else {
|
|
||||||
main_width = Common.Utils.innerWidth();
|
|
||||||
main_height = Common.Utils.innerHeight();
|
|
||||||
}
|
|
||||||
|
|
||||||
this.dragging.maxx = main_width - this.getWidth();
|
this.dragging.maxx = main_width - this.getWidth();
|
||||||
this.dragging.maxy = main_height - this.getHeight() + Common.Utils.InternalSettings.get('window-inactive-area-top');
|
this.dragging.maxy = main_height - this.getHeight();
|
||||||
|
if (this.dragging.maxy < 0)
|
||||||
|
this.dragging.maxy = 0;
|
||||||
|
this.dragging.maxy += main_geometry.top;
|
||||||
|
|
||||||
$(document).on('mousemove', this.binding.drag);
|
$(document).on('mousemove', this.binding.drag);
|
||||||
$(document).on('mouseup', this.binding.dragStop);
|
$(document).on('mouseup', this.binding.dragStop);
|
||||||
|
@ -345,9 +356,10 @@ define([
|
||||||
this.resizing.inith = this.getHeight();
|
this.resizing.inith = this.getHeight();
|
||||||
this.resizing.type = [el.hasClass('left') ? -1 : (el.hasClass('right') ? 1 : 0), el.hasClass('top') ? -1 : (el.hasClass('bottom') ? 1 : 0)];
|
this.resizing.type = [el.hasClass('left') ? -1 : (el.hasClass('right') ? 1 : 0), el.hasClass('top') ? -1 : (el.hasClass('bottom') ? 1 : 0)];
|
||||||
|
|
||||||
var main_width = (window.innerHeight == undefined) ? document.documentElement.offsetWidth : Common.Utils.innerWidth(),
|
var main_geometry = _readDocumetGeometry(),
|
||||||
main_height = (window.innerHeight == undefined) ? document.documentElement.offsetHeight : Common.Utils.innerHeight(),
|
main_width = main_geometry.width,
|
||||||
maxwidth = (this.initConfig.maxwidth) ? this.initConfig.maxwidth : main_width,
|
main_height = main_geometry.height;
|
||||||
|
var maxwidth = (this.initConfig.maxwidth) ? this.initConfig.maxwidth : main_width,
|
||||||
maxheight = (this.initConfig.maxheight) ? this.initConfig.maxheight : main_height;
|
maxheight = (this.initConfig.maxheight) ? this.initConfig.maxheight : main_height;
|
||||||
|
|
||||||
this.resizing.minw = this.initConfig.minwidth;
|
this.resizing.minw = this.initConfig.minwidth;
|
||||||
|
|
|
@ -200,6 +200,13 @@ define([
|
||||||
$('.toolbar').addClass('editor-native-color');
|
$('.toolbar').addClass('editor-native-color');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Common.NotificationCenter.on('document:ready', function () {
|
||||||
|
var maincontroller = webapp.getController('Main');
|
||||||
|
if ( maincontroller.api.asc_isReadOnly && maincontroller.api.asc_isReadOnly() ) {
|
||||||
|
maincontroller.warningDocumentIsLocked();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
Common.NotificationCenter.on('action:undocking', function (opts) {
|
Common.NotificationCenter.on('action:undocking', function (opts) {
|
||||||
native.execCommand('editor:event', JSON.stringify({action:'undocking', state: opts == 'dock' ? 'dock' : 'undock'}));
|
native.execCommand('editor:event', JSON.stringify({action:'undocking', state: opts == 'dock' ? 'dock' : 'undock'}));
|
||||||
});
|
});
|
||||||
|
|
|
@ -99,7 +99,7 @@ define([
|
||||||
},this),
|
},this),
|
||||||
'show': _.bind(function(cmp){
|
'show': _.bind(function(cmp){
|
||||||
var h = this.diagramEditorView.getHeight(),
|
var h = this.diagramEditorView.getHeight(),
|
||||||
innerHeight = Common.Utils.innerHeight();
|
innerHeight = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top');
|
||||||
if (innerHeight>h && h<700 || innerHeight<h) {
|
if (innerHeight>h && h<700 || innerHeight<h) {
|
||||||
h = Math.min(innerHeight, 700);
|
h = Math.min(innerHeight, 700);
|
||||||
this.diagramEditorView.setHeight(h);
|
this.diagramEditorView.setHeight(h);
|
||||||
|
|
|
@ -216,7 +216,7 @@ Common.Utils = _.extend(new(function() {
|
||||||
zoom: function() {return me.zoom;},
|
zoom: function() {return me.zoom;},
|
||||||
topOffset: 0,
|
topOffset: 0,
|
||||||
innerWidth: function() {return me.innerWidth;},
|
innerWidth: function() {return me.innerWidth;},
|
||||||
innerHeight: function() {return me.innerHeight - Common.Utils.InternalSettings.get('window-inactive-area-top');}
|
innerHeight: function() {return me.innerHeight;}
|
||||||
}
|
}
|
||||||
})(), Common.Utils || {});
|
})(), Common.Utils || {});
|
||||||
|
|
||||||
|
|
|
@ -45,10 +45,11 @@ define([
|
||||||
Common.Views.ExternalDiagramEditor = Common.UI.Window.extend(_.extend({
|
Common.Views.ExternalDiagramEditor = Common.UI.Window.extend(_.extend({
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
var _options = {};
|
var _options = {};
|
||||||
|
var _inner_height = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top');
|
||||||
_.extend(_options, {
|
_.extend(_options, {
|
||||||
title: this.textTitle,
|
title: this.textTitle,
|
||||||
width: 910,
|
width: 910,
|
||||||
height: (Common.Utils.innerHeight()-700)<0 ? Common.Utils.innerHeight(): 700,
|
height: (_inner_height - 700)<0 ? _inner_height : 700,
|
||||||
cls: 'advanced-settings-dlg',
|
cls: 'advanced-settings-dlg',
|
||||||
header: true,
|
header: true,
|
||||||
toolclose: 'hide',
|
toolclose: 'hide',
|
||||||
|
@ -140,7 +141,7 @@ define([
|
||||||
this.$window.find('> .body').css('height', height-header_height);
|
this.$window.find('> .body').css('height', height-header_height);
|
||||||
this.$window.find('> .body > .box').css('height', height-85);
|
this.$window.find('> .body > .box').css('height', height-85);
|
||||||
|
|
||||||
var top = (Common.Utils.innerHeight() - parseInt(height)) / 2;
|
var top = (Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top') - parseInt(height)) / 2;
|
||||||
var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2;
|
var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2;
|
||||||
|
|
||||||
this.$window.css('left',left);
|
this.$window.css('left',left);
|
||||||
|
|
|
@ -471,6 +471,8 @@ define([
|
||||||
if ( me.documentCaption ) {
|
if ( me.documentCaption ) {
|
||||||
me.labelDocName.text(me.documentCaption);
|
me.labelDocName.text(me.documentCaption);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$html.find('#rib-doc-name').hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !_.isUndefined(this.options.canRename) ) {
|
if ( !_.isUndefined(this.options.canRename) ) {
|
||||||
|
|
|
@ -50,7 +50,6 @@
|
||||||
|
|
||||||
&.right {
|
&.right {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
min-width: 100px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label {
|
.status-label {
|
||||||
|
|
|
@ -1,7 +1,27 @@
|
||||||
.synch-tip-root {
|
.synch-tip-root {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: @zindex-navbar + 2;
|
z-index: @zindex-navbar + 2;
|
||||||
width: 300px;
|
|
||||||
|
&:not(.simple) {
|
||||||
|
width: 300px;
|
||||||
|
|
||||||
|
.tip-text {
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.simple {
|
||||||
|
max-width: 700px;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, 20px);
|
||||||
|
.tip-arrow {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asc-synchronizetip {
|
||||||
|
padding-right: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.inc-index {
|
&.inc-index {
|
||||||
z-index: @zindex-navbar + 4;
|
z-index: @zindex-navbar + 4;
|
||||||
|
|
|
@ -2219,6 +2219,41 @@ define([
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
warningDocumentIsLocked: function() {
|
||||||
|
var me = this;
|
||||||
|
var _disable_ui = function (disable) {
|
||||||
|
DE.getController('RightMenu').SetDisabled(disable, false, true);
|
||||||
|
DE.getController('Toolbar').DisableToolbar(disable, disable);
|
||||||
|
DE.getController('Statusbar').getView('Statusbar').SetDisabled(disable);
|
||||||
|
DE.getController('Common.Controllers.ReviewChanges').SetDisabled(disable);
|
||||||
|
DE.getController('DocumentHolder').getView().SetDisabled(disable, true);
|
||||||
|
DE.getController('Navigation') && DE.getController('Navigation').SetDisabled(disable);
|
||||||
|
DE.getController('LeftMenu').setPreviewMode(disable);
|
||||||
|
var comments = DE.getController('Common.Controllers.Comments');
|
||||||
|
if (comments) comments.setPreviewMode(disable);
|
||||||
|
}
|
||||||
|
|
||||||
|
_disable_ui(true);
|
||||||
|
|
||||||
|
var tip = new Common.UI.SynchronizeTip({
|
||||||
|
extCls : 'simple',
|
||||||
|
text : Common.Locale.get("warnFileLocked",{name:"DE.Controllers.Main"}),
|
||||||
|
textLink : Common.Locale.get("txtContinueEditing",{name:"DE.Views.SignatureSettings"}),
|
||||||
|
placement : 'document'
|
||||||
|
});
|
||||||
|
tip.on({
|
||||||
|
'dontshowclick': function() {
|
||||||
|
_disable_ui(false);
|
||||||
|
me.api.asc_setIsReadOnly(false);
|
||||||
|
this.close();
|
||||||
|
},
|
||||||
|
'closeclick': function() {
|
||||||
|
this.close();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
tip.show();
|
||||||
|
},
|
||||||
|
|
||||||
leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.',
|
leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.',
|
||||||
criticalErrorTitle: 'Error',
|
criticalErrorTitle: 'Error',
|
||||||
notcriticalErrorTitle: 'Warning',
|
notcriticalErrorTitle: 'Warning',
|
||||||
|
|
|
@ -743,6 +743,7 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
|
"DE.Controllers.Main.warnFileLocked": "Document is in use by another application. You can continue editing and save it as a copy.",
|
||||||
"DE.Controllers.Main.textConvertEquation": "This equation was created with an old version of equation editor which is no longer supported. Converting this equation to Office Math ML format will make it editable.<br>Do you want to convert this equation?",
|
"DE.Controllers.Main.textConvertEquation": "This equation was created with an old version of equation editor which is no longer supported. Converting this equation to Office Math ML format will make it editable.<br>Do you want to convert this equation?",
|
||||||
"DE.Controllers.Main.textApplyAll": "Apply to all equations",
|
"DE.Controllers.Main.textApplyAll": "Apply to all equations",
|
||||||
"DE.Controllers.Main.textLearnMore": "Learn More",
|
"DE.Controllers.Main.textLearnMore": "Learn More",
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>FINDEN/FINDENB-Funktion</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>FINDEN/FINDENB-Funktion</h1>
|
||||||
|
<p>Die Funktionen <b>FINDEN</b>/<b>FINDENB</b> gehört zur Gruppe der Text- und Datenfunktionen. Sie sucht einen in einem anderen Textwert enthaltenen Textwert. Die Funktion <b>FINDEN</b> ist für Sprachen gedacht, die den Single-Byte-Zeichensatz (SBCS) verwenden, während <b>FINDENB</b> für Sprachen verwendet wird, die den Doppelbyte-Zeichensatz (DBCS) verwenden, wie Japanisch, Chinesisch, Koreanisch usw.</p>
|
||||||
|
<p>Die Formelsyntax der Funktion <b>FINDEN/FINDENB</b> ist:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>FINDEN(Suchtext;Text;[Erstes_Zeichen])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>FINDENB(Suchtext;Text;[Erstes_Zeichen])</em></b></p>
|
||||||
|
<p><em>Dabei gilt:</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Suchtext</em></b> gibt den Text an, den Sie suchen.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Text</em></b> ist der Text, der den Text enthält, den Sie suchen möchten.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Erstes_Zeichen</em></b> gibt an, bei welchem Zeichen die Suche begonnen werden soll. Das Argument Erstes_Zeichen ist optional. Fehlt das Argument beginnt die Funktion mit dem ersten Zeichen des Textes.</p>
|
||||||
|
<p>Die Werte können manuell eingegeben werden oder sind in die Zelle eingeschlossen, auf die Sie Bezug nehmen.</p>
|
||||||
|
<p class="note"><b>Hinweis</b>: Liegen keine Übereinstimmungen vor, geben die Funktionen FINDEN und FINDENB den Fehlerwert <b>#WERT!</b> zurück.</p>
|
||||||
|
<p>Anwendung der Funktionen <b>FINDEN/FINDENB</b>:</p>
|
||||||
|
<ol>
|
||||||
|
<li>Wählen Sie die gewünschte Zelle für die Ergebnisanzeige aus.</li>
|
||||||
|
<li>Klicken Sie auf das Symbol <b>Funktion einfügen</b> <img alt="Funktion einfügen" src="../images/insertfunction.png" /> auf der oberen Symbolleiste <br />oder klicken Sie mit der rechten Maustaste in die gewünschte Zelle und wählen Sie die Option <b>Funktion einfügen</b> aus dem Kontextenü aus <br />oder klicken Sie auf das Symbol <img alt="Funktion" src="../images/function.png" /> auf der Formelleiste.</li>
|
||||||
|
<li>Wählen Sie die Funktionsgruppe <b>Text und Daten</b> aus der Liste aus.</li>
|
||||||
|
<li>Klicken Sie auf die Funktion <b>FINDEN oder FINDENB</b>:</li>
|
||||||
|
<li>Geben Sie die erforderlichen Argumente ein und trennen Sie diese durch Kommas.<p class="note"><b>Hinweis</b>: die Funktionen FINDEN/FINDENB <b>unterscheiden zwischen Groß- und Kleinbuchstaben</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>Drücken Sie die <b>Eingabetaste</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Das Ergebnis wird in der gewählten Zelle angezeigt.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="FINDEN/FINDENB-Funktion" src="../images/find.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>LINKS/LINKSB-Funktion</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>LINKS/LINKSB-Funktion</h1>
|
||||||
|
<p>Die Funktionen <b>LINKS/LINKSB</b> gehören zur Gruppe der Text- und Datenfunktionen. Sie gibt auf der Grundlage der Anzahl von Zeichen/Bytes, die Sie angeben, das oder die erste(n) Zeichen in einer Textzeichenfolge zurück. Die Funktion <b>LINKS</b> ist für Sprachen gedacht, die den Single-Byte-Zeichensatz (SBCS) verwenden, während <b>LINKS</b> für Sprachen verwendet wird, die den Doppelbyte-Zeichensatz (DBCS) verwenden, wie Japanisch, Chinesisch, Koreanisch usw.</p>
|
||||||
|
<p>Die Formelsyntax der Funktionen <b>LINKS/LINKSB</b> ist:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LINKS(Text;[Anzahl_Zeichen])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LINKSB(Text;[Anzahl_Bytes])</em></b></p>
|
||||||
|
<p><em>Dabei gilt:</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Text</em></b> ist die Zeichenfolge mit den Zeichen, die Sie extrahieren möchten.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Anzahl_Zeichen</em></b> gibt die Anzahl der Zeichen an, die von der Funktion extrahiert werden sollen. Dieses Argument ist optional. Fehlt das Argument, wird es als 1 angenommen.</p>
|
||||||
|
<p>Die Daten können manuell eingegeben werden oder sind in die Zelle eingeschlossen, auf die Sie Bezug nehmen.</p>
|
||||||
|
<p>Anwendung der Funktion <b>LINKS/LINKSB</b>.</p>
|
||||||
|
<ol>
|
||||||
|
<li>Wählen Sie die gewünschte Zelle für die Ergebnisanzeige aus.</li>
|
||||||
|
<li>Klicken Sie auf das Symbol <b>Funktion einfügen</b> <img alt="Funktion einfügen" src="../images/insertfunction.png" /> auf der oberen Symbolleiste <br />oder klicken Sie mit der rechten Maustaste in die gewünschte Zelle und wählen Sie die Option <b>Funktion einfügen</b> aus dem Kontextenü aus <br />oder klicken Sie auf das Symbol <img alt="Funktion" src="../images/function.png" /> auf der Formelleiste.</li>
|
||||||
|
<li>Wählen Sie die Funktionsgruppe <b>Text und Daten</b> aus der Liste aus.</li>
|
||||||
|
<li>Anwendung der Funktion <b>LINKS/LINKSB</b>.</li>
|
||||||
|
<li>Geben Sie die erforderlichen Argumente ein und trennen Sie diese durch Kommas.</li>
|
||||||
|
<li>Drücken Sie die <b>Eingabetaste</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Das Ergebnis wird in der gewählten Zelle angezeigt.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="LINKS/LINKSB-Funktion" src="../images/left.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,35 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>LÄNGE/LÄNGEB-Funktion</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>LÄNGE/LÄNGEB-Funktion</h1>
|
||||||
|
<p>Die Funktion <b>LÄNGE/LÄNGEB</b> gehört zur Gruppe der Text- und Datenfunktionen. Sie wird verwendet, um die angegebene Zeichenfolge zu analysieren und die Anzahl der enthaltenen Zeichen/Bytes zurückzugeben. Die Funktion <b>LÄNGE</b> ist für Sprachen gedacht, die den Single-Byte-Zeichensatz (SBCS) verwenden, während <b>LÄNGEB</b> für Sprachen verwendet wird, die den Doppelbyte-Zeichensatz (DBCS) verwenden, wie Japanisch, Chinesisch, Koreanisch usw.</p>
|
||||||
|
<p>Die Formelsyntax der Funktion <b>LÄNGE/LÄNGEB</b> ist:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LÄNGE(Text)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LÄNGEB(Text)</em></b></p>
|
||||||
|
<p><b><em>Text</em></b> ist der Text, dessen Länge Sie ermitteln möchten. Leerzeichen zählen als Zeichen.</p>
|
||||||
|
<p>Anwendung der Funktionen <b>LÄNGE/LÄNGEB</b>:</p>
|
||||||
|
<ol>
|
||||||
|
<li>Wählen Sie die gewünschte Zelle für die Ergebnisanzeige aus.</li>
|
||||||
|
<li>Klicken Sie auf das Symbol <b>Funktion einfügen</b> <img alt="Funktion einfügen" src="../images/insertfunction.png" /> auf der oberen Symbolleiste <br />oder klicken Sie mit der rechten Maustaste in die gewünschte Zelle und wählen Sie die Option <b>Funktion einfügen</b> aus dem Kontextenü aus <br />oder klicken Sie auf das Symbol <img alt="Funktion" src="../images/function.png" /> auf der Formelleiste.</li>
|
||||||
|
<li>Wählen Sie die Funktionsgruppe <b>Text und Daten</b> aus der Liste aus.</li>
|
||||||
|
<li>Klicken Sie auf die gewünschte Funktion <b>LÄNGE</b> bzw. <b>LÄNGEB</b>:</li>
|
||||||
|
<li>Geben Sie das erforderliche Argument ein.</li>
|
||||||
|
<li>Drücken Sie die <b>Eingabetaste</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Das Ergebnis wird in der gewählten Zelle angezeigt.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="LÄNGE/LÄNGEB-Funktion" src="../images/len.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,39 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>TEIL/TEILB-Funktion</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>TEIL/TEILB-Funktion</h1>
|
||||||
|
<p>Die Funktionen <b>TEIL/TEILB</b> gehören zur Gruppe der Text- und Datenfunktionen. Sie gibt auf der Grundlage der angegebenen Anzahl von Zeichen/Bytes eine bestimmte Anzahl von Zeichen einer Zeichenfolge ab der von Ihnen angegebenen Position zurück. Die Funktion <b>TEIL</b> ist für Sprachen gedacht, die den Single-Byte-Zeichensatz (SBCS) verwenden, während <b>TEILB</b> für Sprachen verwendet wird, die den Doppelbyte-Zeichensatz (DBCS) verwenden, wie Japanisch, Chinesisch, Koreanisch usw.</p>
|
||||||
|
<p>Die Formelsyntax der Funktion <b>TEIL/TEILB</b> ist:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>TEIL(Text;Erstes_Zeichen;Anzahl_Zeichen)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>TEILB(Text;Erstes_Zeichen;Anzahl_Byte)</em></b></p>
|
||||||
|
<p><em>Dabei gilt:</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Text</em></b> ist die Zeichenfolge mit den Zeichen, die Sie extrahieren möchten.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Erstes_Zeichen</em></b> ist die Position des ersten Zeichens, das Sie aus dem Text extrahieren möchten.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Anzahl_Zeichen</em></b> gibt die Anzahl der Zeichen an, die von der Funktion extrahiert werden sollen.</p>
|
||||||
|
<p>Die Daten können manuell eingegeben werden oder sind in die Zelle eingeschlossen, auf die Sie Bezug nehmen.</p>
|
||||||
|
<p>Anwendung der Funktion <b>TEIL/TEILB</b>.</p>
|
||||||
|
<ol>
|
||||||
|
<li>Wählen Sie die gewünschte Zelle für die Ergebnisanzeige aus.</li>
|
||||||
|
<li>Klicken Sie auf das Symbol <b>Funktion einfügen</b> <img alt="Funktion einfügen" src="../images/insertfunction.png" /> auf der oberen Symbolleiste <br />oder klicken Sie mit der rechten Maustaste in die gewünschte Zelle und wählen Sie die Option <b>Funktion einfügen</b> aus dem Kontextenü aus <br />oder klicken Sie auf das Symbol <img alt="Funktion" src="../images/function.png" /> auf der Formelleiste.</li>
|
||||||
|
<li>Wählen Sie die Funktionsgruppe <b>Text und Daten</b> aus der Liste aus.</li>
|
||||||
|
<li>Anwendung der Funktion <b>TEIL/TEILB</b>.</li>
|
||||||
|
<li>Geben Sie die erforderlichen Argumente ein und trennen Sie diese durch Kommas.</li>
|
||||||
|
<li>Drücken Sie die <b>Eingabetaste</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Das Ergebnis wird in der gewählten Zelle angezeigt.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="TEIL/TEILB-Funktion" src="../images/mid.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>ERSETZEN/ERSETZENB-Funktion</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>ERSETZEN/ERSETZENB-Funktion</h1>
|
||||||
|
<p>Die Funktionen <b>ERSETZEN/ERSETZENB</b> gehören zur Gruppe der Text- und Datenfunktionen. Sie ersetzt eine Zeichenfolge, basierend auf der Anzahl der Zeichen und der angegebenen Startposition, durch eine neue Zeichengruppe. Die Funktion <b>ERSETZEN</b> ist für Sprachen gedacht, die den Single-Byte-Zeichensatz (SBCS) verwenden, während <b>ERSETZENB</b> für Sprachen verwendet wird, die den Doppelbyte-Zeichensatz (DBCS) verwenden, wie Japanisch, Chinesisch, Koreanisch usw.</p>
|
||||||
|
<p>Die Formelsyntax der Funktionen <b>ERSETZEN/ERSETZENB</b> ist:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ERSETZEN(Alter_Text;Erstes_Zeichen;Anzahl_Zeichen;Neuer_Text)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ERSETZENB(Alter_Text;Erstes_Zeichen;Anzahl_Zeichen;Neuer_Text)</em></b></p>
|
||||||
|
<p><em>Dabei gilt:</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Alter_Text</em></b> ist der Text, in dem Sie eine Anzahl von Zeichen ersetzen möchten.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Erstes_Zeichen</em></b> ist die Position des Zeichens, an der mit dem Ersetzen begonnen werden soll.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Anzahl_Zeichen</em></b> ist die Anzahl der Zeichen in die ersetzt werden sollen.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Neuer_Text</em></b> ist der Ersatztext.</p>
|
||||||
|
<p>Die Argumente werden manuell eingegeben oder sind in die Zelle eingeschlossen, auf die Sie Bezug nehmen.</p>
|
||||||
|
<p>Anwendung der Funktionen <b>ERSETZEN/ERSETZENB</b>:</p>
|
||||||
|
<ol>
|
||||||
|
<li>Wählen Sie die gewünschte Zelle für die Ergebnisanzeige aus.</li>
|
||||||
|
<li>Klicken Sie auf das Symbol <b>Funktion einfügen</b> <img alt="Funktion einfügen" src="../images/insertfunction.png" /> auf der oberen Symbolleiste <br />oder klicken Sie mit der rechten Maustaste in die gewünschte Zelle und wählen Sie die Option <b>Funktion einfügen</b> aus dem Kontextenü aus <br />oder klicken Sie auf das Symbol <img alt="Funktion" src="../images/function.png" /> auf der Formelleiste.</li>
|
||||||
|
<li>Wählen Sie die Funktionsgruppe <b>Text und Daten</b> aus der Liste aus.</li>
|
||||||
|
<li>Klicken Sie auf die gewünschte Funktion <b>ERSETZEN</b> oder <b>ERSETZENB</b>.</li>
|
||||||
|
<li>Geben Sie die erforderlichen Argumente ein und trennen Sie diese durch Kommas.<p class="note"><b>Hinweis</b>: die Funktionen ERSETZEN/ERSETZENB <b>unterscheiden zwischen Groß- und Kleinbuchstaben</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>Drücken Sie die <b>Eingabetaste</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Das Ergebnis wird in der gewählten Zelle angezeigt.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="REPLACE Funktion" src="../images/replace.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>RECHTS/RECHTSB-Funktion</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>RECHTS/RECHTSB-Funktion</h1>
|
||||||
|
<p>Die Funktionen <b>RECHTS, RECHTSB</b> gehören zur Gruppe der Text- und Datenfunktionen. Sie extrahieren eine Teilzeichenfolge aus einer Zeichenfolge, beginnend mit dem Zeichen ganz rechts, basierend auf der angegebenen Anzahl von Zeichen. Die Funktion <b>RECHTS</b> ist für Sprachen gedacht, die den Single-Byte-Zeichensatz (SBCS) verwenden, während <b>RECHTSB</b> für Sprachen verwendet wird, die den Doppelbyte-Zeichensatz (DBCS) verwenden, wie Japanisch, Chinesisch, Koreanisch usw.</p>
|
||||||
|
<p>Die Formelsyntax der Funktionen <b>RECHTS, RECHTSB</b> ist:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>RECHTS(Text;[Anzahl_Zeichen])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>RECHTSB(Text;[Anzahl_Zeichen])</em></b></p>
|
||||||
|
<p><em>Dabei gilt:</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Text</em></b> ist die Zeichenfolge mit den Zeichen, die Sie extrahieren möchten.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Anzahl_Zeichen</em></b> gibt die Anzahl der Zeichen an, die von der Funktion extrahiert werden sollen. Dieses Argument ist optional. Wird an dieser Stelle kein Argument eingegeben, wird es als 1 angenommen.</p>
|
||||||
|
<p>Die Daten können manuell eingegeben werden oder sind in die Zelle eingeschlossen, auf die Sie Bezug nehmen.</p>
|
||||||
|
<p>Anwendung der Funktionen <b>RECHTS, RECHTSB</b>:</p>
|
||||||
|
<ol>
|
||||||
|
<li>Wählen Sie die gewünschte Zelle für die Ergebnisanzeige aus.</li>
|
||||||
|
<li>Klicken Sie auf das Symbol <b>Funktion einfügen</b> <img alt="Funktion einfügen" src="../images/insertfunction.png" /> auf der oberen Symbolleiste <br />oder klicken Sie mit der rechten Maustaste in die gewünschte Zelle und wählen Sie die Option <b>Funktion einfügen</b> aus dem Kontextenü aus <br />oder klicken Sie auf das Symbol <img alt="Funktion" src="../images/function.png" /> auf der Formelleiste.</li>
|
||||||
|
<li>Wählen Sie die Funktionsgruppe <b>Text und Daten</b> aus der Liste aus.</li>
|
||||||
|
<li>Klicken Sie auf die gewünschte Funktion <b>RECHTS</b> oder <b>RECHTSB</b>.</li>
|
||||||
|
<li>Geben Sie die erforderlichen Argumente ein und trennen Sie diese durch Kommas.</li>
|
||||||
|
<li>Drücken Sie die <b>Eingabetaste</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Das Ergebnis wird in der gewählten Zelle angezeigt.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="RECHTS/RECHTSB-Funktion" src="../images/right.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>SUCHEN/SUCHENB-Funktion</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Suche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>SUCHEN/SUCHENB-Funktion</h1>
|
||||||
|
<p>Die Funktionen <b>SUCHEN/SUCHENB</b> gehören zur Gruppe der Text- und Datenfunktionen. Sie werden verwendet, um einen in einem anderen Textwert enthaltenen Textwert (Groß-/Kleinschreibung wird nicht beachtet) zu suchen. Die Funktion <b>SUCHEN</b> ist für Sprachen gedacht, die den Single-Byte-Zeichensatz (SBCS) verwenden, während <b>SUCHENB</b> für Sprachen verwendet wird, die den Doppelbyte-Zeichensatz (DBCS) verwenden, wie Japanisch, Chinesisch, Koreanisch usw.</p>
|
||||||
|
<p>Die Formelsyntax der Funktion <b>SUCHEN/SUCHENB</b> ist:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>SUCHEN(Suchtext;Text;[Erstes_Zeichen])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>SUCHENB(Suchtext;Text;[Erstes_Zeichen])</em></b></p>
|
||||||
|
<p><em>Dabei gilt:</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Suchtext</em></b> ist der gesuchte Text.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Text</em></b> ist der Text indem nach dem Argument Suchtext gesucht werden soll.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>Erstes Zeichen</em></b> ist die Nummer des Zeichens im Argument Text, ab der die Suche durchgeführt werde soll. Dieses Argument ist optional. Fehlt das Argument Erstes_Zeichen, wird es als 1 angenommen und die Funktion startet die Suche am Anfang von <b><em>Text</em></b>.</p>
|
||||||
|
<p>Die Argumente werden manuell eingegeben oder sind in die Zelle eingeschlossen, auf die Sie Bezug nehmen.</p>
|
||||||
|
<p class="note"><b>Hinweis</b>: Wird der in Suchtext angegebene Wert nicht gefunden, gibt die Funktion den Fehlerwert <b>#WERT!</b> zurück.</p>
|
||||||
|
<p>Anwendung der Funktion <b>SUCHEN/SUCHENB</b>:</p>
|
||||||
|
<ol>
|
||||||
|
<li>Wählen Sie die gewünschte Zelle für die Ergebnisanzeige aus.</li>
|
||||||
|
<li>Klicken Sie auf das Symbol <b>Funktion einfügen</b> <img alt="Funktion einfügen" src="../images/insertfunction.png" /> auf der oberen Symbolleiste <br />oder klicken Sie mit der rechten Maustaste in die gewünschte Zelle und wählen Sie die Option <b>Funktion einfügen</b> aus dem Kontextenü aus <br />oder klicken Sie auf das Symbol <img alt="Funktion" src="../images/function.png" /> auf der Formelleiste.</li>
|
||||||
|
<li>Wählen Sie die Funktionsgruppe <b>Text und Daten</b> aus der Liste aus.</li>
|
||||||
|
<li>Klicken Sie auf die Funktion <b>SUCHEN/SUCHENB</b>.</li>
|
||||||
|
<li>Geben Sie die erforderlichen Argumente ein und trennen Sie diese durch Kommas.<p class="note"><b>Hinweis</b>: die Funktionen SUCHEN und SUCHENB unterscheiden <b>NICHT</b> zwischen Groß- und Kleinschreibung.</p>
|
||||||
|
</li>
|
||||||
|
<li>Drücken Sie die <b>Eingabetaste</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Das Ergebnis wird in der gewählten Zelle angezeigt.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="SUCHEN-Funktion" src="../images/search.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>FIND/FINDB Function</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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>FIND/FINDB Function</h1>
|
||||||
|
<p>The <b>FIND</b>/<b>FINDB</b> function is one of the text and data functions. Is used to find the specified substring (string-1) within a string (string-2). The <b>FIND</b> function is intended for languages that use the single-byte character set (SBCS), while <b>FINDB</b> - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
|
||||||
|
<p>The <b>FIND/FINDB</b> function syntax is:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>FIND(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>FINDB(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p><em>where</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> is a string you are looking for,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> is a string you are searching within,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> is a position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string.</p>
|
||||||
|
<p>The values can be entered manually or included into the cell you make reference to.</p>
|
||||||
|
<p class="note"><b>Note</b>: if there are no matches, the function will return the <b>#VALUE!</b> error.</p>
|
||||||
|
<p>To apply the <b>FIND/FINDB</b> function,</p>
|
||||||
|
<ol>
|
||||||
|
<li>select the cell where you wish to display the result,</li>
|
||||||
|
<li>click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon situated at the top toolbar,
|
||||||
|
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
|
||||||
|
<br />or click the <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||||
|
</li>
|
||||||
|
<li>select the <b>Text and data</b> function group from the list,</li>
|
||||||
|
<li>click the <b>FIND/FINDB</b> function,</li>
|
||||||
|
<li>enter the required arguments separating them by comma,
|
||||||
|
<p class="note"><b>Note</b>: the FIND/FINDB function is <b>case-sensitive</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>press the <b>Enter</b> button.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The result will be displayed in the selected cell.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="FIND/FINDB Function" src="../images/find.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>LEFT/LEFTB Function</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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>LEFT/LEFTB Function</h1>
|
||||||
|
<p>The <b>LEFT/LEFTB</b> function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The <b>LEFT</b> function is intended for languages that use the single-byte character set (SBCS), while <b>LEFTB</b> - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
|
||||||
|
<p>The <b>LEFT/LEFTB</b> function syntax is:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LEFT(string [, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LEFTB(string [, number-chars])</em></b></p>
|
||||||
|
<p><em>where</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> is a string you need to extract the substring from,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> is a number of the substring characters. It is an optional argument. If it is omitted, the function will assume it to be 1.</p>
|
||||||
|
<p>The data can be entered manually or included into the cells you make reference to.</p>
|
||||||
|
<p>To apply the <b>LEFT/LEFTB</b> function,</p>
|
||||||
|
<ol>
|
||||||
|
<li>select the cell where you wish to display the result,</li>
|
||||||
|
<li>click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon situated at the top toolbar,
|
||||||
|
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
|
||||||
|
<br />or click the <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||||
|
</li>
|
||||||
|
<li>select the <b>Text and data</b> function group from the list,</li>
|
||||||
|
<li>click the <b>LEFT/LEFTB</b> function,</li>
|
||||||
|
<li>enter the required arguments separating them by comma,</li>
|
||||||
|
<li>press the <b>Enter</b> button.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The result will be displayed in the selected cell.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="LEFT/LEFTB Function" src="../images/left.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,39 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>LEN/LENB Function</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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>LEN/LENB Function</h1>
|
||||||
|
<p>The <b>LEN/LENB</b> function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The <b>LEN</b> function is intended for languages that use the single-byte character set (SBCS), while <b>LENB</b> - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
|
||||||
|
<p>The <b>LEN/LENB</b> function syntax is:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LEN(string)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LENB(string)</em></b></p>
|
||||||
|
<p>where <b><em>string</em></b> is a data entered manually or included into the cell you make reference to.</p>
|
||||||
|
<p>To apply the <b>LEN/LENB</b> function,</p>
|
||||||
|
<ol>
|
||||||
|
<li>select the cell where you wish to display the result,</li>
|
||||||
|
<li>click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon situated at the top toolbar,
|
||||||
|
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
|
||||||
|
<br />or click the <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||||
|
</li>
|
||||||
|
<li>select the <b>Text and data</b> function group from the list,</li>
|
||||||
|
<li>click the <b>LEN/LENB</b> function,</li>
|
||||||
|
<li>enter the required argument,
|
||||||
|
</li>
|
||||||
|
<li>press the <b>Enter</b> button.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The result will be displayed in the selected cell.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="LEN/LENB Function" src="../images/len.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,42 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>MID/MIDB Function</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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>MID/MIDB Function</h1>
|
||||||
|
<p>The <b>MID/MIDB</b> function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The <b>MID</b> function is intended for languages that use the single-byte character set (SBCS), while <b>MIDB</b> - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
|
||||||
|
<p>The <b>MID/MIDB</b> function syntax is:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>MID(string, start-pos, number-chars)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>MIDB(string, start-pos, number-chars)</em></b></p>
|
||||||
|
<p><em>where</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> is a string you need to extract the characters from.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> is a position you need to start extracting from.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> is a number of the characters you need to extract.</p>
|
||||||
|
<p>The data can be entered manually or included into the cells you make reference to.</p>
|
||||||
|
<p>To apply the <b>MID/MIDB</b> function,</p>
|
||||||
|
<ol>
|
||||||
|
<li>select the cell where you wish to display the result,</li>
|
||||||
|
<li>click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon situated at the top toolbar,
|
||||||
|
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
|
||||||
|
<br />or click the <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||||
|
</li>
|
||||||
|
<li>select the <b>Text and data</b> function group from the list,</li>
|
||||||
|
<li>click the <b>MID/MIDB</b> function,</li>
|
||||||
|
<li>enter the required arguments separating them by comma,</li>
|
||||||
|
<li>press the <b>Enter</b> button.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The result will be displayed in the selected cell.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="MID/MIDB Function" src="../images/mid.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>REPLACE/REPLACEB Function</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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>REPLACE/REPLACEB Function</h1>
|
||||||
|
<p>The <b>REPLACE/REPLACEB</b> function is one of the text and data functions. Is used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters. The <b>REPLACE</b> function is intended for languages that use the single-byte character set (SBCS), while <b>REPLACEB</b> - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
|
||||||
|
<p>The <b>REPLACE/REPLACEB</b> function syntax is:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REPLACE(string-1, start-pos, number-chars, string-2)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REPLACEB(string-1, start-pos, number-chars, string-2)</em></b></p>
|
||||||
|
<p><em>where</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> is the original text to be replaced.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> is the beginning of the set to be replaced.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> is the number of characters to be replaced.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> is the new text.</p>
|
||||||
|
<p>The values can be entered manually or included into the cells you make reference to.</p>
|
||||||
|
<p>To apply the <b>REPLACE/REPLACEB</b> function,</p>
|
||||||
|
<ol>
|
||||||
|
<li>select the cell where you wish to display the result,</li>
|
||||||
|
<li>click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon situated at the top toolbar,
|
||||||
|
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
|
||||||
|
<br />or click the <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||||
|
</li>
|
||||||
|
<li>select the <b>Text and data</b> function group from the list,</li>
|
||||||
|
<li>click the <b>REPLACE/REPLACEB</b> function,</li>
|
||||||
|
<li>enter the required arguments separating them by comma,
|
||||||
|
<p class="note"><b>Note</b>: the REPLACE function is <b>case-sensitive</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>press the <b>Enter</b> button.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The result will be displayed in the selected cell.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="REPLACE Function" src="../images/replace.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>RIGHT/RIGHTB Function</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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>RIGHT/RIGHTB Function</h1>
|
||||||
|
<p>The <b>RIGHT/RIGHTB</b> function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The <b>RIGHT</b> function is intended for languages that use the single-byte character set (SBCS), while <b>RIGHTB</b> - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
|
||||||
|
<p>The <b>RIGHT/RIGHTB</b> function syntax is:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>RIGHT(string [, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>RIGHTB(string [, number-chars])</em></b></p>
|
||||||
|
<p><em>where</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> is a string you need to extract the substring from,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> is a number of the substring characters. It is an optional argument. If it is omitted, the funcion will assume it to be 1.</p>
|
||||||
|
<p>The data can be entered manually or included into the cells you make reference to.</p>
|
||||||
|
<p>To apply the <b>RIGHT/RIGHTB</b> function,</p>
|
||||||
|
<ol>
|
||||||
|
<li>select the cell where you wish to display the result,</li>
|
||||||
|
<li>click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon situated at the top toolbar,
|
||||||
|
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
|
||||||
|
<br />or click the <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||||
|
</li>
|
||||||
|
<li>select the <b>Text and data</b> function group from the list,</li>
|
||||||
|
<li>click the <b>RIGHT/RIGHTB</b> function,</li>
|
||||||
|
<li>enter the required arguments separating them by comma,</li>
|
||||||
|
<li>press the <b>Enter</b> button.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The result will be displayed in the selected cell.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="RIGHT Function" src="../images/right.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>SEARCH/SEARCHB Function</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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>SEARCH/SEARCHB Function</h1>
|
||||||
|
<p>The <b>SEARCH/SEARCHB</b> function is one of the text and data functions. Is used to return the location of the specified substring in a string. The <b>SEARCH</b> function is intended for languages that use the single-byte character set (SBCS), while <b>SEARCHB</b> - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.</p>
|
||||||
|
<p>The <b>SEARCH/SEARCHB</b> function syntax is:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>SEARCH(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>SEARCHB(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p><em>where</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> is the substring to find.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> is the string to search within.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> is the position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of <b><em>string-2</em></b>.</p>
|
||||||
|
<p>The data can be entered manually or included into the cells you make reference to.</p>
|
||||||
|
<p class="note"><b>Note</b>: if the function does not find the matches, it will return a <b>#VALUE!</b> error.</p>
|
||||||
|
<p>To apply the <b>SEARCH/SEARCHB</b> function,</p>
|
||||||
|
<ol>
|
||||||
|
<li>select the cell where you wish to display the result,</li>
|
||||||
|
<li>click the <b>Insert function</b> <img alt="Insert function icon" src="../images/insertfunction.png" /> icon situated at the top toolbar,
|
||||||
|
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
|
||||||
|
<br />or click the <img alt="Function icon" src="../images/function.png" /> icon situated at the formula bar,
|
||||||
|
</li>
|
||||||
|
<li>select the <b>Text and data</b> function group from the list,</li>
|
||||||
|
<li>click the <b>SEARCH/SEARCHB</b> function,</li>
|
||||||
|
<li>enter the required arguments separating them by comma,
|
||||||
|
<p class="note"><b>Note</b>: the SEARCH/SEARCHB function is <b>NOT</b> case-sensitive.</p>
|
||||||
|
</li>
|
||||||
|
<li>press the <b>Enter</b> button.</li>
|
||||||
|
</ol>
|
||||||
|
<p>The result will be displayed in the selected cell.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="SEARCH Function" src="../images/search.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Función ENCONTRAR/ENCONTRARB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Buscar" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Función ENCONTRAR/ENCONTRARB</h1>
|
||||||
|
<p>La función <b>ENCONTRAR</b>/<b>ENCONTRARB</b> es una función de texto y datos. Se usa para encontrar la subcadena especificada (cadena-1) dentro de una cadena (cadena-2). La función <b>ENCONTRAR</b> está destinada para idiomas que usan el conjunto de caracteres de un byte (SBCS), mientras la función <b>ENCONTRARB</b> - para idiomas que usan el conjunto de caracteres de doble byte (DBCS) como japonés, chino, coreano etc.</p>
|
||||||
|
<p>La sintaxis de la función <b>ENCONTRAR/ENCONTRARB</b> es:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ENCONTRAR(cadena-1, cadena-2 [,posición-inicio])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ENCONTRARB(cadena-1, cadena-2 [,posición-inicio])</em></b></p>
|
||||||
|
<p><em>donde</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena-1</em></b> es la cadena que usted está buscando,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena-2</em></b> es la cadena dentro de la que se realiza la búsqueda,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>posición-inicio</em></b> es la posición en una cadena donde se inicia la búsqueda. Es un argumento opcional. Si se omite, se iniciará la búsqueda desde el principio de la cadena.</p>
|
||||||
|
<p>Los datos pueden ser introducidos manualmente o incluidos en las celdas a las que usted hace referencia.</p>
|
||||||
|
<p class="note"><b>Nota</b>: si no se encuentran coincidencias, la función devolverá el valor de error <b>#VALOR!</b>.</p>
|
||||||
|
<p>Para aplicar la función <b>ENCONTRAR/ENCONTRARB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>seleccione la celda donde usted quiere ver el resultado,</li>
|
||||||
|
<li>pulse el icono <b>Insertar función</b> <img alt="Icono insertar función" src="../images/insertfunction.png" /> que se sitúa en la barra de herramientas superior, <br />o haga clic derecho en la сelda seleccionada y elija la opción <b>Insertar función</b> en el menú, <br />o pulse el icono <img alt="Icono función" src="../images/function.png" /> que se sitúa en la barra de fórmulas,</li>
|
||||||
|
<li>seleccione grupo de funciones <b>Texto y datos</b> en la lista,</li>
|
||||||
|
<li>haga clic en la función <b>ENCONTRAR/ENCONTRARB</b>,</li>
|
||||||
|
<li>introduzca los argumentos correspondientes separados por comas,<p class="note"><b>Nota</b>: la función ENCONTRAR/ENCONTRARB es <b>sensible a mayúscula y minúscula</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>pulse el botón <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>El resultado se mostrará en la celda elegida.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Función ENCONTRAR/ENCONTRARB" src="../images/find.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Función IZQUIERDA/IZQUIERDAB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Buscar" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Función IZQUIERDA/IZQUIERDAB</h1>
|
||||||
|
<p>La función <b>IZQUIERDA/IZQUIERDAB</b> es una función de texto y datos. Se usa para extraer una subcadena de la cadena especificada empezando con el carácter izquierdo. La función <b>IZQUIERDA</b> está destinada para idiomas que usan el conjunto de caracteres de un byte (SBCS), mientras la función <b>IZQUIERDAB</b> - para idiomas que usan el conjunto de caracteres de doble byte (DBCS) como japonés, chino, coreano etc.</p>
|
||||||
|
<p>La sintaxis de la función <b>IZQUIERDA/IZQUIERDAB</b> es:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>IZQUIERDA(cadena [, número-caracteres])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>IZQUIERDAB(cadena [, número-caracteres])</em></b></p>
|
||||||
|
<p><em>donde</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena</em></b> es una cadena de la que usted necesita extraer la subcadena,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>número-caracteres</em></b> es un número de caracteres en la subcadena. Es un argumento opcional. Si se omite, el número será igual a 1.</p>
|
||||||
|
<p>Los datos pueden ser introducidos manualmente o incluidos en las celdas a las que usted hace referencia.</p>
|
||||||
|
<p>Para aplicar la función <b>IZQUIERDA/IZQUIERDAB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>seleccione la celda donde usted quiere ver el resultado,</li>
|
||||||
|
<li>pulse el icono <b>Insertar función</b> <img alt="Icono insertar función" src="../images/insertfunction.png" /> que se sitúa en la barra de herramientas superior, <br />o haga clic derecho en la сelda seleccionada y elija la opción <b>Insertar función</b> en el menú, <br />o pulse el icono <img alt="Icono función" src="../images/function.png" /> que se sitúa en la barra de fórmulas,</li>
|
||||||
|
<li>seleccione grupo de funciones <b>Texto y datos</b> en la lista,</li>
|
||||||
|
<li>haga clic en la función <b>IZQUIERDA/IZQUIERDAB</b>,</li>
|
||||||
|
<li>introduzca los argumentos requeridos separándolos por comas,</li>
|
||||||
|
<li>pulse el botón <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>El resultado se mostrará en la celda elegida.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Función IZQUIERDA/IZQUIERDAB" src="../images/left.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,35 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Función LARGO/LARGOB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Buscar" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Función LARGO/LARGOB</h1>
|
||||||
|
<p>La función <b>LARGO/LARGOB</b> es una función de texto y datos. Se usa para analizar la cadena especificada y devolver el número de caracteres en ella. La función <b>LARGO</b> está destinada para idiomas que usan el conjunto de caracteres de un byte (SBCS), mientras <b>LARGOB</b> - para idiomas que usan el conjunto de caracteres de doble byte (DBCS) como japonés, chino, coreano etc.</p>
|
||||||
|
<p>La sintaxis de la función <b>LARGO/LARGOB</b> es:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LARGO(cadena)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LARGOB(cadena)</em></b></p>
|
||||||
|
<p>donde <b><em>cadena</em></b> es un dato introducido manualmente o incluido en la celda a la que usted hace referencia.</p>
|
||||||
|
<p>Para aplicar la función <b>LARGO/LARGOB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>seleccione la celda donde usted quiere ver el resultado,</li>
|
||||||
|
<li>pulse el icono <b>Insertar función</b> <img alt="Icono insertar función" src="../images/insertfunction.png" /> que se sitúa en la barra de herramientas superior, <br />o haga clic derecho en la сelda seleccionada y elija la opción <b>Insertar función</b> en el menú, <br />o pulse el icono <img alt="Icono función" src="../images/function.png" /> que se sitúa en la barra de fórmulas,</li>
|
||||||
|
<li>seleccione grupo de funciones <b>Texto y datos</b> en la lista,</li>
|
||||||
|
<li>haga clic en la función <b>LARGO/LARGOB</b>,</li>
|
||||||
|
<li>introduzca un argumento requerido,</li>
|
||||||
|
<li>pulse el botón <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>El resultado se mostrará en la celda elegida.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Función LARGO/LARGOB" src="../images/len.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,39 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Función EXTRAE/EXTRAEB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Buscar" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Función EXTRAE/EXTRAEB</h1>
|
||||||
|
<p>La función <b>EXTRAE/EXTRAEB</b> es una función de texto y datos. Se usa para extraer los caracteres desde la cadena especificada empezando de cualquiera posición. La función <b>EXTRAE</b> está destinada para idiomas que usan el conjunto de caracteres de un byte (SBCS), mientras la función <b>EXTRAEB</b> - para idiomas que usan el conjunto de caracteres de doble byte (DBCS) como japonés, chino, coreano etc.</p>
|
||||||
|
<p>La función <b>EXTRAE/EXTRAEB</b> es:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>EXTRAE(cadena, posición-empiece, número-caracteres)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>EXTRAEB(cadena, posición-empiece, número-caracteres)</em></b></p>
|
||||||
|
<p><em>donde</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena</em></b> es la cadena de la que usted necesita extraer los caracteres.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>posición-empiece</em></b> es la posición de donde se comienzan a extraerse los caracteres necesarios.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>número-caracteres</em></b> es el número de caracteres que usted necesita extraer.</p>
|
||||||
|
<p>Los datos pueden ser introducidos manualmente o incluidos en las celdas a las que usted hace referencia.</p>
|
||||||
|
<p>Para aplicar la función <b>EXTRAE/EXTRAEB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>seleccione la celda donde usted quiere ver el resultado,</li>
|
||||||
|
<li>pulse el icono <b>Insertar función</b> <img alt="Icono insertar función" src="../images/insertfunction.png" /> que se sitúa en la barra de herramientas superior, <br />o haga clic derecho en la сelda seleccionada y elija la opción <b>Insertar función</b> en el menú, <br />o pulse el icono <img alt="Icono función" src="../images/function.png" /> que se sitúa en la barra de fórmulas,</li>
|
||||||
|
<li>seleccione grupo de funciones <b>Texto y datos</b> en la lista,</li>
|
||||||
|
<li>haga clic en la función <b>EXTRAE/EXTRAEB</b>,</li>
|
||||||
|
<li>introduzca los argumentos requeridos separándolos por comas,</li>
|
||||||
|
<li>pulse el botón <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>El resultado se mostrará en la celda elegida.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Función EXTRAE/EXTRAEB" src="../images/mid.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Función REEMPLAZAR/REEMPLAZARB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Buscar" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Función REEMPLAZAR/REEMPLAZARB</h1>
|
||||||
|
<p>La función <b>REEMPLAZAR/REEMPLAZARB</b> es una función de texto y datos. Se usa para reemplazar el conjunto de caracteres por un conjunto nuevo, tomando en cuenta el número de caracteres y el punto de inicio especificado. La función <b>REEMPLAZAR</b> está destinada para idiomas que usan el conjunto de caracteres de un byte (SBCS), mientras la función <b>REEMPLAZARB</b> - para idiomas que usan el conjunto de caracteres de doble byte (DBCS) como japonés, chino, coreano etc.</p>
|
||||||
|
<p>La sintaxis de la función <b>REEMPLAZAR/REEMPLAZARB</b> es:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REEMPLAZAR(cadena-1, pos-inicio, número-caracteres, cadena-2)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REEMPLAZARB(cadena-1, pos-inicio, número-caracteres, cadena-2)</em></b></p>
|
||||||
|
<p><em>donde</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena-1</em></b> es el texto original que debe ser reemplazado.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>pos-inicio</em></b> es el punto de inicio del conjunto que debe ser reemplazado.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>número-caracteres</em></b> es el número de caracteres para reemplazar.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena-2</em></b> es un texto nuevo.</p>
|
||||||
|
<p>Los valores pueden introducirse manualmente o incluirse en las celdas a las que usted hace referencia.</p>
|
||||||
|
<p>Para aplicar la función <b>REEMPLAZAR/REEMPLAZARB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>seleccione la celda donde usted quiere ver el resultado,</li>
|
||||||
|
<li>pulse el icono <b>Insertar función</b> <img alt="Icono insertar función" src="../images/insertfunction.png" /> que se sitúa en la barra de herramientas superior, <br />o haga clic derecho en la сelda seleccionada y elija la opción <b>Insertar función</b> en el menú, <br />o pulse el icono <img alt="Icono función" src="../images/function.png" /> que se sitúa en la barra de fórmulas,</li>
|
||||||
|
<li>seleccione grupo de funciones <b>Texto y datos</b> en la lista,</li>
|
||||||
|
<li>haga clic en la función <b>REEMPLAZAR/REEMPLAZARB</b>, </li>
|
||||||
|
<li>introduzca los argumentos requeridos separándolos por comas,<p class="note"><b>Nota</b>: la función REEMPLAZAR es <b>sensible a mayúsculas y minúsculas</b>. </p>
|
||||||
|
</li>
|
||||||
|
<li>pulse el botón <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>El resultado se mostrará en la celda elegida.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Función REEMPLAZAR/REEMPLAZARB" src="../images/replace.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Función DERECHA/DERECHAB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Buscar" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Función DERECHA/DERECHAB</h1>
|
||||||
|
<p>La función <b>DERECHA/DERECHAB</b> es una función de texto y datos. Se usa para extraer una subcadena de una cadena empezando con el carácter más a la derecha, tomando en cuenta el número de caracteres especificado. La función <b>DERECHA</b> está destinada para idiomas que usan el conjunto de caracteres de un byte (SBCS), mientras la función <b>DERECHAB</b> - para idiomas que usan el conjunto de caracteres de doble byte (DBCS) como japonés, chino, coreano etc.</p>
|
||||||
|
<p>La sintaxis de la función <b>DERECHA/DERECHAB</b> es:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>DERECHA(cadena [, número-caracteres])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>DERECHAB(cadena [, número-caracteres])</em></b></p>
|
||||||
|
<p><em>donde</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena</em></b> es la cadena de la que usted necesita extraer la subcadena,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>número-caracteres</em></b> es un número de caracteres en la subcadena. Es un argumento opcional. Si se omite, el número será igual a 1.</p>
|
||||||
|
<p>Los datos pueden ser introducidos manualmente o incluidos en las celdas a las que usted hace referencia.</p>
|
||||||
|
<p>Para aplicar la función <b>DERECHA/DERECHAB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>seleccione la celda donde usted quiere ver el resultado,</li>
|
||||||
|
<li>pulse el icono <b>Insertar función</b> <img alt="Icono insertar función" src="../images/insertfunction.png" /> que se sitúa en la barra de herramientas superior, <br />o haga clic derecho en la сelda seleccionada y elija la opción <b>Insertar función</b> en el menú, <br />o pulse el icono <img alt="Icono función" src="../images/function.png" /> que se sitúa en la barra de fórmulas,</li>
|
||||||
|
<li>seleccione el grupo de funciones <b>Texto y datos</b> en la lista,</li>
|
||||||
|
<li>pulse la función <b>DERECHA/DERECHAB</b>,</li>
|
||||||
|
<li>introduzca los argumentos requeridos separándolos por comas,</li>
|
||||||
|
<li>pulse el botón <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>El resultado se mostrará en la celda elegida.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Función DERECHA/DERECHAB" src="../images/right.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Función HALLAR/HALLARB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Buscar" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Función HALLAR/HALLARB</h1>
|
||||||
|
<p>La función <b>HALLAR/HALLARB</b> es una función de texto y datos. Se usa para devolver la posición de la subcadena especificada en un cadena. La función <b>HALLAR</b> está destinada para idiomas que usan el conjunto de caracteres de un byte (SBCS), mientras la función <b>HALLARB</b> - para idiomas que usan el conjunto de caracteres de doble byte (DBCS) como japonés, chino, coreano etc.</p>
|
||||||
|
<p>La sintaxis de la función <b>HALLAR/HALLARB</b> es:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>HALLAR(cadena-1, cadena-2 [,posición-inicio])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>HALLARB(cadena-1, cadena-2 [,posición-inicio])</em></b></p>
|
||||||
|
<p><em>donde</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena-1</em></b> es la subcadena que usted necesita encontrar.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>cadena-2</em></b> es la cadena dentro de la que se realiza la búsqueda.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>posición-inicio</em></b> es la posición donde empieza la búsqueda. Es un argumento opcional. Si se omite, se realizará la búsqueda desde el inicio de <b><em>cadena-2</em></b>.</p>
|
||||||
|
<p>Los datos pueden ser introducidos manualmente o incluidos en las celdas a las que usted hace referencia.</p>
|
||||||
|
<p class="note"><b>Nota</b>: si no se encuentran coincidencias, la función devolverá un error <b>#VALUE!</b>.</p>
|
||||||
|
<p>Para aplicar la función <b>HALLAR/HALLARB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>seleccione la celda donde usted quiere ver el resultado,</li>
|
||||||
|
<li>pulse el icono <b>Insertar función</b> <img alt="Icono insertar función" src="../images/insertfunction.png" /> que se sitúa en la barra de herramientas superior, <br />o haga clic derecho en la сelda seleccionada y elija la opción <b>Insertar función</b> en el menú, <br />o pulse el icono <img alt="Icono función" src="../images/function.png" /> que se sitúa en la barra de fórmulas,</li>
|
||||||
|
<li>seleccione grupo de funciones <b>Texto y datos</b> en la lista,</li>
|
||||||
|
<li>haga clic en la función <b>HALLAR/HALLARB</b>,</li>
|
||||||
|
<li>introduzca los argumentos requeridos separándolos por comas,<p class="note"><b>Nota</b>: la función HALLAR/HALLARB <b>NO</b> es sensible a mayúsculas y minúsculas.</p>
|
||||||
|
</li>
|
||||||
|
<li>pulse el botón <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>El resultado se mostrará en la celda elegida.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Función HALLAR/HALLARB" src="../images/search.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Fonction TROUVE/TROUVERB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Recherche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Fonction TROUVE/TROUVERB</h1>
|
||||||
|
<p>La focntion <b>TROUVE</b>/<b>TROUVERB</b> est l'une des fonctions de texte et de données. Elle est utilisée pour trouver une sous-chaîne déterminée (string-1) à l'intérieure d'une chaîne (string-2). La fonction <b>TROUVE</b> est destinée pour les langues qui utilisent un jeu de caractères à un octet (SBCS), tendis que <b>TROUVERB</b> est pour les langues qui utilisent un jeu de caractères à deux octets (DBCS) telles que japonais, chinois, coréen etc.</p>
|
||||||
|
<p>La syntaxe de la fonction <b>TROUVE/TROUVERB</b> est :</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>TROUVE(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>TROUVERB(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p><em>où</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> est une chaîne à trouver,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> est une chaîne dans laquelle vous cherchez,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> est la position dans la chaîne à partir de laquelle vous voulez commencer la recherche. C'est un argument facultatif. S'il est omis, la fonction commence la recherche dès le début de la chaîne.</p>
|
||||||
|
<p>Les données peuvent être saisies à la main ou incluses dans les cellules auxquelles il est fait référence.</p>
|
||||||
|
<p class="note"><b>Note</b>: s'il n'a pas de correspondances, la fonction renvoie l'erreur <b>#VALUE!</b>.</p>
|
||||||
|
<p>Pour appliquer la fonction <b>TROUVE/TROUVERB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>sélectionnez la cellule où vous souhaitez afficher le résultat,</li>
|
||||||
|
<li>cliquez sur l'icône <b>Insérer une fonction</b> <img alt="Icône Insérer une fonction" src="../images/insertfunction.png" /> située sur la barre d'outils supérieure, <br />ou cliquez avec le bouton droit sur la cellule sélectionnée et sélectionnez l'option <b>Insérer une fonction</b> depuis le menu, <br />ou cliquez sur l'icône <img alt="Icône Fonction" src="../images/function.png" /> située sur la barre de formule,</li>
|
||||||
|
<li>sélectionnez le groupe de fonctions <b>Texte et données</b> depuis la liste,</li>
|
||||||
|
<li>cliquez sur la fonction <b>TROUVE/TROUVERB</b>,</li>
|
||||||
|
<li>insérez les arguments nécessaires en les séparant par des virgules,<p class="note"><b>Remarque</b>: la fonction TROUVE/TROUVERB <b>respecte la casse</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>appuyez sur la touche <b>Entrée</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Le résultat sera affiché dans la cellule sélectionnée.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Fonction TROUVE/TROUVERB" src="../images/find.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Fonction GAUCHE/GAUCHEB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Recherche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Fonction GAUCHE/GAUCHEB</h1>
|
||||||
|
<p>La focntion <b>GAUCHE/GAUCHEB</b> est l'une des fonctions de texte et de données. Elle est utilisée pour extraire la sous-chaîne de la chaîne spécifiée à partir du caractère gauche. La fonction <b>GAUCHE</b> est destinée pour les langues qui utilisent un jeu de caractères à un octet (SBCS), tendis que <b>GAUCHEB</b> est pour les langues qui utilisent un jeu de caractères à deux octets (DBCS) telles que japonais, chinois, coréen etc.</p>
|
||||||
|
<p>La syntaxe de la fonction <b>GAUCHE/GAUCHEB</b> est :</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>GAUCHE(string [, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>GAUCHEB(string [, number-chars])</em></b></p>
|
||||||
|
<p><em>où</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> est la chaîne de laquelle vous voulez extraire la sous-chaîne,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> est le nombre de caractères dans la sous-chaîne. C'est un argument facultatif. S'il est omis, la fonction l'assume d'être égal à 1.</p>
|
||||||
|
<p>Les données peuvent être saisies à la main ou incluses dans les cellules auxquelles il est fait référence.</p>
|
||||||
|
<p>Pour appliquer la fonction <b>GAUCHE/GAUCHEB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>sélectionnez la cellule où vous souhaitez afficher le résultat,</li>
|
||||||
|
<li>cliquez sur l'icône <b>Insérer une fonction</b> <img alt="Icône Insérer une fonction" src="../images/insertfunction.png" /> située sur la barre d'outils supérieure, <br />ou cliquez avec le bouton droit sur la cellule sélectionnée et sélectionnez l'option <b>Insérer une fonction</b> depuis le menu, <br />ou cliquez sur l'icône <img alt="Icône Fonction" src="../images/function.png" /> située sur la barre de formule,</li>
|
||||||
|
<li>sélectionnez le groupe de fonctions <b>Texte et données</b> depuis la liste,</li>
|
||||||
|
<li>cliquez sur la fonction <b>GAUCHE/GAUCHEB</b>,</li>
|
||||||
|
<li>insérez les arguments nécessaires en les séparant par des virgules,</li>
|
||||||
|
<li>appuyez sur la touche <b>Entrée</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Le résultat sera affiché dans la cellule sélectionnée.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Fonction GAUCHE/GAUCHEB" src="../images/left.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,35 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Fonction NBCAR/LENB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Recherche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Fonction NBCAR/LENB</h1>
|
||||||
|
<p>La focntion <b>NBCAR/LENB</b> est l'une des fonctions de texte et de données. Elle est utilisée pour analyser une chaîne de caractères et renvoyer leur nombre. La fonction <b>NBCAR</b> est destinée pour les langues qui utilisent un jeu de caractères à un octet (SBCS), tendis que <b>LENB</b> est pour les langues qui utilisent un jeu de caractères à deux octets (DBCS) telles que japonais, chinois, coréen etc.</p>
|
||||||
|
<p>La syntaxe de la fonction <b>NBCAR/LENB</b> est :</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>NBCAR(string)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LENB(string)</em></b></p>
|
||||||
|
<p>où <b><em>string</em></b> est une chaîne de caractères saisie à la main ou incluse dans la cellule à laquelle il est fait référence.</p>
|
||||||
|
<p>Pour appliquer la fonction <b>NBCAR/LENB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>sélectionnez la cellule où vous souhaitez afficher le résultat,</li>
|
||||||
|
<li>cliquez sur l'icône <b>Insérer une fonction</b> <img alt="Icône Insérer une fonction" src="../images/insertfunction.png" /> située sur la barre d'outils supérieure, <br />ou cliquez avec le bouton droit sur la cellule sélectionnée et sélectionnez l'option <b>Insérer une fonction</b> depuis le menu, <br />ou cliquez sur l'icône <img alt="Icône Fonction" src="../images/function.png" /> située sur la barre de formule,</li>
|
||||||
|
<li>sélectionnez le groupe de fonctions <b>Texte et données</b> depuis la liste,</li>
|
||||||
|
<li>cliquez sur la fonction <b>NBCAR/LENB</b>,</li>
|
||||||
|
<li>saisissez l'argument requis,</li>
|
||||||
|
<li>appuyez sur la touche <b>Entrée</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Le résultat sera affiché dans la cellule sélectionnée.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Fonction NBCAR/LENB" src="../images/len.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,39 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Fonction STXT/MIDB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Recherche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Fonction STXT/MIDB</h1>
|
||||||
|
<p>La fonction <b>STXT/MIDB</b> est l'une des fonctions de texte et de données. Elle est utilisée pour extraire les caractères de la chaîne déterminée à partir de n'importe quelle position. La fonction <b>STXT</b> est destinée pour les langues qui utilisent un jeu de caractères à un octet (SBCS), tendis que <b>MIDB</b> est pour les langues qui utilisent un jeu de caractères à deux octets (DBCS) telles que japonais, chinois, coréen etc.</p>
|
||||||
|
<p>La syntaxe de la fonction <b>STXT/MIDB</b> est :</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>STXT(string, start-pos, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>MIDB(string, start-pos, number-chars])</em></b></p>
|
||||||
|
<p><em>où</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> est la chaîne de laquelle vous voulez extraire les caractères.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> est la position à partir de laquelle vous voulez extraire les caractères.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> est le nombre de caractères que vous voulez extraire.</p>
|
||||||
|
<p>Les données peuvent être saisies à la main ou incluses dans les cellules auxquelles il est fait référence.</p>
|
||||||
|
<p>Pour appliquer la fonction <b>STXT/MIDB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>sélectionnez la cellule où vous souhaitez afficher le résultat,</li>
|
||||||
|
<li>cliquez sur l'icône <b>Insérer une fonction</b> <img alt="Icône Insérer une fonction" src="../images/insertfunction.png" /> située sur la barre d'outils supérieure, <br />ou cliquez avec le bouton droit sur la cellule sélectionnée et sélectionnez l'option <b>Insérer une fonction</b> depuis le menu, <br />ou cliquez sur l'icône <img alt="Icône Fonction" src="../images/function.png" /> située sur la barre de formule,</li>
|
||||||
|
<li>sélectionnez le groupe de fonctions <b>Texte et données</b> depuis la liste,</li>
|
||||||
|
<li>cliquez sur la fonction <b>STXT/MIDB</b>,</li>
|
||||||
|
<li>insérez les arguments nécessaires en les séparant par des virgules,</li>
|
||||||
|
<li>appuyez sur la touche <b>Entrée</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Le résultat sera affiché dans la cellule sélectionnée.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Fonction STXT/MIDB" src="../images/mid.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Fonction REMPLACER/REMPLACERB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Recherche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Fonction REMPLACER/REMPLACERB</h1>
|
||||||
|
<p>La fonction <b>REMPLACER/REMPLACERB</b> est l'une des fonctions de texte et de données. Elle est utilisée pour remplacer un jeu de caractères à la base du nombre de caractères et la position initiale, par un nouveau jeu de caractères. La fonction <b>REMPLACER</b> est destinée pour les langues qui utilisent un jeu de caractères à un octet (SBCS), tendis que <b>REMPLACERB</b> est pour les langues qui utilisent un jeu de caractères à deux octets (DBCS) telles que japonais, chinois, coréen etc.</p>
|
||||||
|
<p>La syntaxe de la fonction <b>REMPLACER/REMPLACERB</b> est :</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REMPLACER(string-1, start-pos, number-chars, string-2)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REMPLACERB(string-1, start-pos, number-chars, string-2)</em></b></p>
|
||||||
|
<p><em>où</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> est un texte à remplacer.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> est le commencement du jeu à remplacer.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> est le nombre de caractères à remplacer.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> est un nouveau texte.</p>
|
||||||
|
<p>Les données peuvent être saisies à la main ou incluses dans les cellules auxquelles il est fait référence.</p>
|
||||||
|
<p>Pour appliquer la fonction <b>REMPLACER/REMPLACERB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>sélectionnez la cellule où vous souhaitez afficher le résultat,</li>
|
||||||
|
<li>cliquez sur l'icône <b>Insérer une fonction</b> <img alt="Icône Insérer une fonction" src="../images/insertfunction.png" /> située sur la barre d'outils supérieure, <br />ou cliquez avec le bouton droit sur la cellule sélectionnée et sélectionnez l'option <b>Insérer une fonction</b> depuis le menu, <br />ou cliquez sur l'icône <img alt="Icône Fonction" src="../images/function.png" /> située sur la barre de formule,</li>
|
||||||
|
<li>sélectionnez le groupe de fonctions <b>Texte et données</b> depuis la liste,</li>
|
||||||
|
<li>cliquez sur la fonction <b>REMPLACER/REMPLACERB</b>,</li>
|
||||||
|
<li>insérez les arguments nécessaires en les séparant par des virgules,<p class="note"><b>Remarque </b>: la fonction REMPLACER <b>respecte la casse</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>appuyez sur la touche <b>Entrée</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Le résultat sera affiché dans la cellule sélectionnée.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Fonction REMPLACER" src="../images/replace.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Fonction DROITE/DROITEB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Recherche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Fonction DROITE/DROITEB</h1>
|
||||||
|
<p>La fonction <b>DROITE/DROITEB</b> est l'une des fonctions de texte et de données. Elle est utilisée pour extraire une sous-chaîne de la chaîne à partir du caractère droit à la base du nombre de caractères spécifié. La fonction <b>DROITE</b> est destinée pour les langues qui utilisent un jeu de caractères à un octet (SBCS), tendis que <b>DROITEB</b> est pour les langues qui utilisent un jeu de caractères à deux octets (DBCS) telles que japonais, chinois, coréen etc.</p>
|
||||||
|
<p>La syntaxe de la fonction <b>DROITE/DROITEB</b> est :</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>DROITE(string [, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>DROITEB(string [, number-chars])</em></b></p>
|
||||||
|
<p><em>où</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> est la chaîne de laquelle vous voulez extraire la sous-chaîne,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> est le nombre de caractères dans la sous-chaîne. C'est un argument facultatif. S'il est omis, la fonction l'assume d'être égal à 1.</p>
|
||||||
|
<p>Les données peuvent être saisies à la main ou incluses dans les cellules auxquelles il est fait référence.</p>
|
||||||
|
<p>Pour appliquer la fonction <b>DROITE/DROITEB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>sélectionnez la cellule où vous souhaitez afficher le résultat,</li>
|
||||||
|
<li>cliquez sur l'icône <b>Insérer une fonction</b> <img alt="Icône Insérer une fonction" src="../images/insertfunction.png" /> située sur la barre d'outils supérieure, <br />ou cliquez avec le bouton droit sur la cellule sélectionnée et sélectionnez l'option <b>Insérer une fonction</b> depuis le menu, <br />ou cliquez sur l'icône <img alt="Icône Fonction" src="../images/function.png" /> située sur la barre de formule,</li>
|
||||||
|
<li>sélectionnez le groupe de fonctions <b>Texte et données</b> depuis la liste,</li>
|
||||||
|
<li>cliquez sur la fonction <b>DROITE/DROITEB</b>,</li>
|
||||||
|
<li>insérez les arguments nécessaires en les séparant par des virgules,</li>
|
||||||
|
<li>appuyez sur la touche <b>Entrée</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Le résultat sera affiché dans la cellule sélectionnée.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Fonction DROITE" src="../images/right.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Fonction CHERCHE/CHERCHERB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Recherche" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Fonction CHERCHE/CHERCHERB</h1>
|
||||||
|
<p>La fonction <b>CHERCHE/CHERCHERB</b> est l'une des fonctions de texte et de données. Elle est utilisée pour renvoyer la position de la sous-chaîne dans la chaîne. La fonction <b>CHERCHE</b> est destinée pour les langues qui utilisent un jeu de caractères à un octet (SBCS), tendis que <b>CHERCHERB</b> est pour les langues qui utilisent un jeu de caractères à deux octets (DBCS) telles que japonais, chinois, coréen etc.</p>
|
||||||
|
<p>La syntaxe de la fonction <b>CHERCHE/CHERCHERB</b> est :</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>CHERCHE(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>CHERCHERB(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p><em>où</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> est la sous-chaîne à rechercher.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> est la chaîne dans laquelle vous voulez rechercher.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> est la position à partir de laquelle vous voulez commencer la recherche. C'est un argument facultatif. S'il est omis, la fonction effectue la recherche dès le commencement de la <b><em>string-2</em></b>.</p>
|
||||||
|
<p>Les données peuvent être saisies à la main ou incluses dans les cellules auxquelles il est fait référence.</p>
|
||||||
|
<p class="note"><b>Remarque </b>: si la fonction ne trouve pas de correspondances, elle renvoie l'erreur <b>#VALUE!</b>.</p>
|
||||||
|
<p>Pour appliquer la fonction <b>CHERCHE/CHERCHERB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>sélectionnez la cellule où vous souhaitez afficher le résultat,</li>
|
||||||
|
<li>cliquez sur l'icône <b>Insérer une fonction</b> <img alt="Icône Insérer une fonction" src="../images/insertfunction.png" /> située sur la barre d'outils supérieure, <br />ou cliquez avec le bouton droit sur la cellule sélectionnée et sélectionnez l'option <b>Insérer une fonction</b> depuis le menu, <br />ou cliquez sur l'icône <img alt="Icône Fonction" src="../images/function.png" /> située sur la barre de formule,</li>
|
||||||
|
<li>sélectionnez le groupe de fonctions <b>Texte et données</b> depuis la liste,</li>
|
||||||
|
<li>cliquez sur la fonction <b>CHERCHE/CHERCHERB</b>,</li>
|
||||||
|
<li>insérez les arguments nécessaires en les séparant par des virgules,<p class="note"><b>Remarque </b>: la fonction CHERCHE/CHERCHERB <b>ne respecte pas la casse</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>appuyez sur la touche <b>Entrée</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Le résultat sera affiché dans la cellule sélectionnée.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Fonction CHERCHE" src="../images/search.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,40 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Funzione FIND/FINDB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<h1>Funzione FIND/FINDB</h1>
|
||||||
|
<p>La funzione <b>FIND</b>/<b>FINDB</b> è una delle funzioni della categoria Testo e dati. Si usa per trovare una determinata sottostringa (string-1) in una stringa (string-2). La funzione <b>FIND</b> è destinata alle lingue che usano il set di caratteri a un byte (SBCS), mentre <b>FINDB</b> per le lingue che usano il set di caratteri a due byte (DBCS) come giapponese, cinese, koreano ecc.</p>
|
||||||
|
<p>La sintassi della funzione <b>FIND/FINDB</b> è:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>FIND(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>FINDB(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p><em>dove</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> è una sottostringa da trovare,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> è una stringa nella quale desiderate cercare una determinata sottostringa,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> è la posizione nella stringa da dove desiderate iniziare la ricerca. Questo è un argomento opzionale. Se è assente, la funzione effettua la ricerca dall'inizio di una stringa.</p>
|
||||||
|
<p>I valori possono essere inseriti a mano o inclusi nella cella alla quale fate riferimento.</p>
|
||||||
|
<p class="note"><b>Nota</b>: se la funzione non trova nessuna corrispondenza, viene restituito l'errore <b>#VALUE!</b>.</p>
|
||||||
|
<p>Per applicare la funzione <b>FIND/FINDB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>selezionate la cella dove desiderate visualizzare il risultato,</li>
|
||||||
|
<li>cliccate sull'icona <b>Inserisci funzione</b> <img alt="Inserisci funzione" src="../images/insertfunction.png" /> sulla barra degli strumenti superiore,
|
||||||
|
<br />o cliccate con il tasto destro del mouse sulla cella scelta e selezionate l'opzione <b>Inserisci funzione</b> dal menu contestuale,
|
||||||
|
<br />o cliccate sull'icona <img alt="Funzione" src="../images/function.png" /> prima della barra della formula,
|
||||||
|
</li>
|
||||||
|
<li>selezionate il gruppo di funzioni <b>Testo e dati</b> dall'elenco,</li>
|
||||||
|
<li>cliccate sulla funzione <b>FIND/FINDB</b>,</li>
|
||||||
|
<li>inserite gli argomenti richiesti separati da virgola,
|
||||||
|
<p class="note"><b>Nota</b>: la funzione FIND/FINDB è <b>sensibile a maiuscole/minuscole</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>premete il tasto <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Il risultato sarà visualizzato nella cella scelta.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Funzione FIND/FINDB" src="../images/find.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,36 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Funzione LEFT/LEFTB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<h1>Funzione LEFT/LEFTB</h1>
|
||||||
|
<p>La funzione <b>LEFT/LEFTB</b> è una delle funzioni della categoria Testo e dati. Si usa per estrarre la sottostringa da una determinata stringa a partire al carattere sinistro. La funzione <b>LEFT</b> è destinata alle lingue che usano il set di caratteri a un byte (SBCS), mentre <b>LEFTB</b> per le lingue che usano il set di caratteri a due byte (DBCS) come giapponese, cinese, koreano ecc.</p>
|
||||||
|
<p>La sintassi della funzione <b>LEFT/LEFTB</b> è:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LEFT(string [, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LEFTB(string [, number-chars])</em></b></p>
|
||||||
|
<p><em>dove</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> è una stringa dalla quale desiderate estrarre la sottostringa,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> è il numero di caratteri. Questo è un argomento opzionale. L'argomento assente viene considerato pari a 1.</p>
|
||||||
|
<p>I dati possono essere inseriti a mano o inclusi nelle celle alle quali fate riferimento.</p>
|
||||||
|
<p>Per applicare la funzione <b>LEFT/LEFTB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>selezionate la cella dove desiderate visualizzare il risultato,</li>
|
||||||
|
<li>cliccate sull'icona <b>Inserisci funzione</b> <img alt="Inserisci funzione" src="../images/insertfunction.png" /> sulla barra degli strumenti superiore,
|
||||||
|
<br />o cliccate con il tasto destro del mouse sulla cella scelta e selezionate l'opzione <b>Inserisci funzione</b> dal menu contestuale,
|
||||||
|
<br />o cliccate sull'icona <img alt="Funzione" src="../images/function.png" /> prima della barra della formula,
|
||||||
|
</li>
|
||||||
|
<li>selezionate il gruppo di funzioni <b>Testo e dati</b> dall'elenco,</li>
|
||||||
|
<li>cliccate sulla funzione <b>LEFT/LEFTB</b>,</li>
|
||||||
|
<li>inserite gli argomenti richiesti separati da virgola,</li>
|
||||||
|
<li>premete il tasto <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Il risultato sarà visualizzato nella cella scelta.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Funzione LEFT/LEFTB" src="../images/left.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,34 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Funzione LEN/LENB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<h1>Funzione LEN/LENB</h1>
|
||||||
|
<p>La funzione <b>LEN/LENB</b> è una delle funzioni della categoria Testo e dati. Si usa per analizzare la determinata stringa e restituire il numero di caratteri che contiene. La funzione <b>LEN</b> è destinata alle lingue che usano il set di caratteri a un byte (SBCS), mentre <b>LENB</b> per le lingue che usano il set di caratteri a due byte (DBCS) come giapponese, cinese, koreano ecc.</p>
|
||||||
|
<p>La sintassi della funzione <b>LEN/LENB</b> è:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LEN(string)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>LENB(string)</em></b></p>
|
||||||
|
<p>dove <b><em>string</em></b> sono i dati inseriti a mano o inclusi nella cella alla quale fate riferimento.</p>
|
||||||
|
<p>Per applicare la funzione <b>LEN/LENB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>selezionate la cella dove desiderate visualizzare il risultato,</li>
|
||||||
|
<li>cliccate sull'icona <b>Inserisci funzione</b> <img alt="Inserisci funzione" src="../images/insertfunction.png" /> sulla barra degli strumenti superiore,
|
||||||
|
<br />o cliccate con il tasto destro del mouse sulla cella scelta e selezionate l'opzione <b>Inserisci funzione</b> dal menu contestuale,
|
||||||
|
<br />o cliccate sull'icona <img alt="Funzione" src="../images/function.png" /> prima della barra della formula,
|
||||||
|
</li>
|
||||||
|
<li>selezionate il gruppo di funzioni <b>Testo e dati</b> dall'elenco,</li>
|
||||||
|
<li>cliccate sulla funzione <b>LEN/LENB</b>,</li>
|
||||||
|
<li>inserite l'argomento richiesto,
|
||||||
|
</li>
|
||||||
|
<li>premete il tasto <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Il risultato sarà visualizzato nella cella scelta.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Funzione LEN/LENB" src="../images/len.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,37 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Funzione MID/MIDB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<h1>Funzione MID/MIDB</h1>
|
||||||
|
<p>La funzione <b>MID/MIDB</b> è una delle funzioni della categoria Testo e dati. Si usa per estrarre i caratteri da una determinata stringa a partire da qualsiasi posizione. La funzione <b>MID</b> è destinata alle lingue che usano il set di caratteri a un byte (SBCS), mentre <b>MIDB</b> per le lingue che usano il set di caratteri a due byte (DBCS) come giapponese, cinese, koreano ecc.</p>
|
||||||
|
<p>La sintassi della funzione <b>MID/MIDB</b> è:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>MID(string, start-pos, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>MIDB(string, start-pos, number-chars])</em></b></p>
|
||||||
|
<p><em>dove</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> è una stringa dalla quale desiderate estrarre i caratteri.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> è la posizione iniziale.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> è il numero di caratteri da estrarre.</p>
|
||||||
|
<p>I dati possono essere inseriti a mano o inclusi nelle celle alle quali fate riferimento.</p>
|
||||||
|
<p>Per applicare la funzione <b>MID/MIDB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>selezionate la cella dove desiderate visualizzare il risultato,</li>
|
||||||
|
<li>cliccate sull'icona <b>Inserisci funzione</b> <img alt="Inserisci funzione" src="../images/insertfunction.png" /> sulla barra degli strumenti superiore,
|
||||||
|
<br />o cliccate con il tasto destro del mouse sulla cella scelta e selezionate l'opzione <b>Inserisci funzione</b> dal menu contestuale,
|
||||||
|
<br />o cliccate sull'icona <img alt="Funzione" src="../images/function.png" /> prima della barra della formula,
|
||||||
|
</li>
|
||||||
|
<li>selezionate il gruppo di funzioni <b>Testo e dati</b> dall'elenco,</li>
|
||||||
|
<li>cliccate sulla funzione <b>MID/MIDB</b>,</li>
|
||||||
|
<li>inserite gli argomenti richiesti separati da virgola,</li>
|
||||||
|
<li>premete il tasto <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Il risultato sarà visualizzato nella cella scelta.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Funzione MID/MIDB" src="../images/mid.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,40 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Funzione REPLACE/REPLACEB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<h1>Funzione REPLACE/REPLACEB</h1>
|
||||||
|
<p>La funzione <b>REPLACE/REPLACEB</b> è una delle funzioni della categoria Testo e dati. Si usa per sostituire un set di caratteri, sulla base del numero di caratteri e la determinata posizione iniziale, da un nuovo set di caratteri. La funzione <b>REPLACE</b> è destinata alle lingue che usano il set di caratteri a un byte (SBCS), mentre <b>REPLACEB</b> per le lingue che usano il set di caratteri a due byte (DBCS) come giapponese, cinese, koreano ecc.</p>
|
||||||
|
<p>La sintassi della funzione <b>REPLACE/REPLACEB</b> è:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REPLACE(string-1, start-pos, number-chars, string-2)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>REPLACEB(string-1, start-pos, number-chars, string-2)</em></b></p>
|
||||||
|
<p><em>dove</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> è il testo originale da sostituire.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> è l'inizio del set da sostituire.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> è il numero di caratteri da sostituire.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> è un nuovo testo.</p>
|
||||||
|
<p>I valori possono essere inseriti a mano o inclusi nelle celle alle quali fate riferimento.</p>
|
||||||
|
<p>Per applicare la funzione <b>REPLACE/REPLACEB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>selezionate la cella dove desiderate visualizzare il risultato,</li>
|
||||||
|
<li>cliccate sull'icona <b>Inserisci funzione</b> <img alt="Inserisci funzione" src="../images/insertfunction.png" /> sulla barra degli strumenti superiore,
|
||||||
|
<br />o cliccate con il tasto destro del mouse sulla cella scelta e selezionate l'opzione <b>Inserisci funzione</b> dal menu contestuale,
|
||||||
|
<br />o cliccate sull'icona <img alt="Funzione" src="../images/function.png" /> prima della barra della formula,
|
||||||
|
</li>
|
||||||
|
<li>selezionate il gruppo di funzioni <b>Testo e dati</b> dall'elenco,</li>
|
||||||
|
<li>cliccate sulla funzione <b>REPLACE/REPLACEB</b>,</li>
|
||||||
|
<li>inserite gli argomenti richiesti separati da virgola,
|
||||||
|
<p class="note"><b>Nota</b>: la funzione EXACT è <b>sensibile a maiuscole/minuscole</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>premete il tasto <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Il risultato sarà visualizzato nella cella scelta.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Funzione REPLACE/REPLACEB" src="../images/replace.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,36 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Funzione RIGHT/RIGHTB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<h1>Funzione RIGHT/RIGHTB</h1>
|
||||||
|
<p>La funzione <b>RIGHT/RIGHTB</b> è una delle funzioni della categoria Testo e dati. Si usa per estrarre una sottostringa da una stringa a partire dal carattere destro sulla base di un determinato numero di caratteri. La funzione <b>RIGHT</b> è destinata alle lingue che usano il set di caratteri a un byte (SBCS), mentre <b>RIGHTB</b> per le lingue che usano il set di caratteri a due byte (DBCS) come giapponese, cinese, koreano ecc.</p>
|
||||||
|
<p>La sintassi della funzione <b>RIGHT/RIGHTB</b> è:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>RIGHT(string [, number-chars])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>RIGHTB(string [, number-chars])</em></b></p>
|
||||||
|
<p><em>dove</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string</em></b> è una stringa dalla quale desiderate estrarre una sottostringa,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>number-chars</em></b> è il numero di caratteri da estrarre. Questo è un argomento opzionale. L'argomento assente viene considerato pari a 1.</p>
|
||||||
|
<p>I dati possono essere inseriti a mano o inclusi nelle celle alle quali fate riferimento.</p>
|
||||||
|
<p>Per applicare la funzione <b>RIGHT/RIGHTB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>selezionate la cella dove desiderate visualizzare il risultato,</li>
|
||||||
|
<li>cliccate sull'icona <b>Inserisci funzione</b> <img alt="Inserisci funzione" src="../images/insertfunction.png" /> sulla barra degli strumenti superiore,
|
||||||
|
<br />o cliccate con il tasto destro del mouse sulla cella scelta e selezionate l'opzione <b>Inserisci funzione</b> dal menu contestuale,
|
||||||
|
<br />o cliccate sull'icona <img alt="Funzione" src="../images/function.png" /> prima della barra della formula,
|
||||||
|
</li>
|
||||||
|
<li>selezionate il gruppo di funzioni <b>Testo e dati</b> dall'elenco,</li>
|
||||||
|
<li>cliccate sulla funzione <b>RIGHT/RIGHTB</b>,</li>
|
||||||
|
<li>inserite gli argomenti richiesti separati da virgola,</li>
|
||||||
|
<li>premete il tasto <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Il risultato sarà visualizzato nella cella scelta.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Funzione RIGHT" src="../images/right.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,40 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Funzione SEARCH/SEARCHB</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="mainpart">
|
||||||
|
<h1>Funzione SEARCH/SEARCHB</h1>
|
||||||
|
<p>La funzione <b>SEARCH/SEARCHB</b> è una delle funzioni della categoria Testo e dati. Si usa per restituire la locazione di una determinata sottostringa in una stringa. La funzione <b>SEARCH</b> è destinata alle lingue che usano il set di caratteri a un byte (SBCS), mentre <b>SEARCHB</b> per le lingue che usano il set di caratteri a due byte (DBCS) come giapponese, cinese, koreano ecc.</p>
|
||||||
|
<p>La sintassi della funzione <b>SEARCH/SEARCHB</b> è:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>SEARCH(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>SEARCHB(string-1, string-2 [,start-pos])</em></b></p>
|
||||||
|
<p><em>dove</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-1</em></b> è una sottostringa da trovare.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>string-2</em></b> è una stringa nella quale desiderate cercare una determinata sottostringa.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>start-pos</em></b> è la posizione nella stringa da dove desiderate iniziare la ricerca. Questo è un argomento opzionale. Se è assente, la funzione effettua la ricerca dall'inizio di <b><em>string-2</em></b>.</p>
|
||||||
|
<p>I dati possono essere inseriti a mano o inclusi nella cella alla quale fate riferimento.</p>
|
||||||
|
<p class="note"><b>Nota</b>: se la funzione non trova nessuna corrispondenza, viene restituito l'errore <b>#VALUE!</b>.</p>
|
||||||
|
<p>Per applicare la funzione <b>SEARCH/SEARCHB</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>selezionate la cella dove desiderate visualizzare il risultato,</li>
|
||||||
|
<li>cliccate sull'icona <b>Inserisci funzione</b> <img alt="Inserisci funzione" src="../images/insertfunction.png" /> sulla barra degli strumenti superiore,
|
||||||
|
<br />o cliccate con il tasto destro del mouse sulla cella scelta e selezionate l'opzione <b>Inserisci funzione</b> dal menu contestuale,
|
||||||
|
<br />o cliccate sull'icona <img alt="Funzione" src="../images/function.png" /> prima della barra della formula,
|
||||||
|
</li>
|
||||||
|
<li>selezionate il gruppo di funzioni <b>Testo e dati</b> dall'elenco,</li>
|
||||||
|
<li>cliccate sulla funzione <b>SEARCH/SEARCHB</b>,</li>
|
||||||
|
<li>inserite gli argomenti richiesti separati da virgola,
|
||||||
|
<p class="note"><b>Nota</b>: la funzione SEARCH/SEARCHB è <b>sensibile a maiuscole/minuscole</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>premete il tasto <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Il risultato sarà visualizzato nella cella scelta.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Funzione SEARCH" src="../images/search.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -61,7 +61,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>Funzioni Informazione</td>
|
<td>Funzioni Informazione</td>
|
||||||
<td>Si usano per fornire le informazioni sui dati nella cella o nell'intervallo di celle scelto.</td>
|
<td>Si usano per fornire le informazioni sui dati nella cella o nell'intervallo di celle scelto.</td>
|
||||||
<td><a href="../Functions/error.type.htm" onclick="onhyperlinkclick(this)">ERROR.TYPE</a>; <a href="../Functions/isblank.htm" onclick="onhyperlinkclick(this)">ISBLANK</a>; <a href="../Functions/iserr.htm" onclick="onhyperlinkclick(this)">ISERR</a>; <a href="../Functions/iserror.htm" onclick="onhyperlinkclick(this)">ISERROR</a>; <a href="../Functions/iseven.htm" onclick="onhyperlinkclick(this)">ISEVEN</a>; <a href="../Functions/islogical.htm" onclick="onhyperlinkclick(this)">ISLOGICAL</a>; <a href="../Functions/isna.htm" onclick="onhyperlinkclick(this)">ISNA</a>; <a href="../Functions/isnontext.htm" onclick="onhyperlinkclick(this)">ISNONTEXT</a>; <a href="../Functions/isnumber.htm" onclick="onhyperlinkclick(this)">ISNUMBER</a>; <a href="../Functions/isodd.htm" onclick="onhyperlinkclick(this)">ISODD</a>; <a href="../Functions/isref.htm" onclick="onhyperlinkclick(this)">ISREF</a>; <a href="../Functions/istext.htm" onclick="onhyperlinkclick(this)">ISTEXT</a>; <a href="../Functions/n.htm" onclick="onhyperlinkclick(this)">N</a>; <a href="../Functions/na.htm" onclick="onhyperlinkclick(this)">NA</a>; <a href="../Functions/type.htm" onclick="onhyperlinkclick(this)">TYPE</a></td>
|
<td><a href="../Functions/error-type.htm" onclick="onhyperlinkclick(this)">ERROR.TYPE</a>; <a href="../Functions/isblank.htm" onclick="onhyperlinkclick(this)">ISBLANK</a>; <a href="../Functions/iserr.htm" onclick="onhyperlinkclick(this)">ISERR</a>; <a href="../Functions/iserror.htm" onclick="onhyperlinkclick(this)">ISERROR</a>; <a href="../Functions/iseven.htm" onclick="onhyperlinkclick(this)">ISEVEN</a>; <a href="../Functions/islogical.htm" onclick="onhyperlinkclick(this)">ISLOGICAL</a>; <a href="../Functions/isna.htm" onclick="onhyperlinkclick(this)">ISNA</a>; <a href="../Functions/isnontext.htm" onclick="onhyperlinkclick(this)">ISNONTEXT</a>; <a href="../Functions/isnumber.htm" onclick="onhyperlinkclick(this)">ISNUMBER</a>; <a href="../Functions/isodd.htm" onclick="onhyperlinkclick(this)">ISODD</a>; <a href="../Functions/isref.htm" onclick="onhyperlinkclick(this)">ISREF</a>; <a href="../Functions/istext.htm" onclick="onhyperlinkclick(this)">ISTEXT</a>; <a href="../Functions/n.htm" onclick="onhyperlinkclick(this)">N</a>; <a href="../Functions/na.htm" onclick="onhyperlinkclick(this)">NA</a>; <a href="../Functions/type.htm" onclick="onhyperlinkclick(this)">TYPE</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Funzioni Logiche</td>
|
<td>Funzioni Logiche</td>
|
||||||
|
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Функция НАЙТИ/НАЙТИБ</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Поиск" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Функция НАЙТИ/НАЙТИБ</h1>
|
||||||
|
<p>Функция <b>НАЙТИ</b>/<b>НАЙТИБ</b> - это одна из функций для работы с текстом и данными. Используется для поиска заданной подстроки (искомый_текст) внутри строки (просматриваемый_текст). Функция <b>НАЙТИ</b> предназначена для языков, использующих однобайтовую кодировку (SBCS), в то время как <b>НАЙТИБ</b> - для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д.</p>
|
||||||
|
<p>Синтаксис функции <b>НАЙТИ/НАЙТИБ</b>:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>НАЙТИ(искомый_текст;просматриваемый_текст;[нач_позиция])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>НАЙТИБ(искомый_текст;просматриваемый_текст;[нач_позиция])</em></b></p>
|
||||||
|
<p><em>где</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>искомый_текст</em></b> - строка, которую требуется найти,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>просматриваемый_текст</em></b> - строка, в которой производится поиск,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>нач_позиция</em></b> - позиция в строке, откуда начнется поиск. Необязательный аргумент. Если он опущен, функция НАЙТИ/НАЙТИБ начинает поиск с начала строки.</p>
|
||||||
|
<p>Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.</p>
|
||||||
|
<p class="note"><b>Примечание</b>: если соответствий нет, функция НАЙТИ/НАЙТИБ возвращает ошибку <b>#ЗНАЧ!</b>.</p>
|
||||||
|
<p>Чтобы применить функцию <b>НАЙТИ/НАЙТИБ</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>выделите ячейку, в которой требуется отобразить результат,</li>
|
||||||
|
<li>щелкните по значку <b>Вставить функцию</b> <img alt="Значок Вставить функцию" src="../images/insertfunction.png" />, расположенному на верхней панели инструментов,
|
||||||
|
<br />или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду <b>Вставить функцию</b>,
|
||||||
|
<br />или щелкните по значку <img alt="Значок Функция" src="../images/function.png" /> перед строкой формул,
|
||||||
|
</li>
|
||||||
|
<li>выберите из списка группу функций <b>Текст и данные</b>,</li>
|
||||||
|
<li>щелкните по функции <b>НАЙТИ/НАЙТИБ</b>,</li>
|
||||||
|
<li>введите требуемые аргументы через точку с запятой,
|
||||||
|
<p class="note"><b>Примечание</b>: функция НАЙТИ/НАЙТИБ <b>учитывает регистр</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>нажмите клавишу <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Результат будет отображен в выбранной ячейке.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Функция НАЙТИ/НАЙТИБ" src="../images/find.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Функция ЛЕВСИМВ/ЛЕВБ</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Поиск" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Функция ЛЕВСИМВ/ЛЕВБ</h1>
|
||||||
|
<p>Функция <b>ЛЕВСИМВ/ЛЕВБ</b> - это одна из функций для работы с текстом и данными. Извлекает подстроку из заданной строки, начиная с левого символа. Функция <b>ЛЕВСИМВ</b> предназначена для языков, использующих однобайтовую кодировку (SBCS), в то время как <b>ЛЕВБ</b> - для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д.</p>
|
||||||
|
<p>Синтаксис функции <b>ЛЕВСИМВ/ЛЕВБ</b>:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ЛЕВСИМВ(текст;[число_знаков])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ЛЕВБ(текст;[число_знаков])</em></b></p>
|
||||||
|
<p><em>где</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>текст</em></b> - строка, из которой требуется извлечь подстроку,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>число_знаков</em></b> - количество символов подстроки. Необязательный аргумент. Если он опущен, ему присваивается значение 1.</p>
|
||||||
|
<p>Эти данные можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.</p>
|
||||||
|
<p>Чтобы применить функцию <b>ЛЕВСИМВ/ЛЕВБ</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>выделите ячейку, в которой требуется отобразить результат,</li>
|
||||||
|
<li>щелкните по значку <b>Вставить функцию</b> <img alt="Значок Вставить функцию" src="../images/insertfunction.png" />, расположенному на верхней панели инструментов,
|
||||||
|
<br />или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду <b>Вставить функцию</b>,
|
||||||
|
<br />или щелкните по значку <img alt="Значок Функция" src="../images/function.png" /> перед строкой формул,
|
||||||
|
</li>
|
||||||
|
<li>выберите из списка группу функций <b>Текст и данные</b>,</li>
|
||||||
|
<li>щелкните по функции <b>ЛЕВСИМВ/ЛЕВБ</b>,</li>
|
||||||
|
<li>введите требуемые аргументы через точку с запятой,</li>
|
||||||
|
<li>нажмите клавишу <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Результат будет отображен в выбранной ячейке.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Функция ЛЕВСИМВ/ЛЕВБ" src="../images/left.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,39 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Функция ДЛСТР/ДЛИНБ</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Поиск" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Функция ДЛСТР/ДЛИНБ</h1>
|
||||||
|
<p>Функция <b>ДЛСТР/ДЛИНБ</b> - это одна из функций для работы с текстом и данными. Анализирует заданную строку и возвращает количество символов, которые она содержит. Функция <b>ДЛСТР</b> предназначена для языков, использующих однобайтовую кодировку (SBCS), в то время как <b>ДЛИНБ</b> - для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д.</p>
|
||||||
|
<p>Синтаксис функции <b>ДЛСТР/ДЛИНБ</b>:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ДЛСТР(текст)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ДЛИНБ(текст)</em></b></p>
|
||||||
|
<p>где <b><em>текст</em></b> - это данные, введенные вручную или находящиеся в ячейке, на которую дается ссылка.</p>
|
||||||
|
<p>Чтобы применить функцию <b>ДЛСТР/ДЛИНБ</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>выделите ячейку, в которой требуется отобразить результат,</li>
|
||||||
|
<li>щелкните по значку <b>Вставить функцию</b> <img alt="Значок Вставить функцию" src="../images/insertfunction.png" />, расположенному на верхней панели инструментов,
|
||||||
|
<br />или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду <b>Вставить функцию</b>,
|
||||||
|
<br />или щелкните по значку <img alt="Значок Функция" src="../images/function.png" /> перед строкой формул,
|
||||||
|
</li>
|
||||||
|
<li>выберите из списка группу функций <b>Текст и данные</b>,</li>
|
||||||
|
<li>щелкните по функции <b>ДЛСТР/ДЛИНБ</b>,</li>
|
||||||
|
<li>введите требуемый аргумент,
|
||||||
|
</li>
|
||||||
|
<li>нажмите клавишу <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Результат будет отображен в выбранной ячейке.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Функция ДЛСТР/ДЛИНБ" src="../images/len.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,42 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Функция ПСТР/ПСТРБ</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Поиск" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Функция ПСТР/ПСТРБ</h1>
|
||||||
|
<p>Функция <b>ПСТР/ПСТРБ</b> - это одна из функций для работы с текстом и данными. Извлекает символы из заданной строки, начиная с любого места. Функция <b>ПСТР</b> предназначена для языков, использующих однобайтовую кодировку (SBCS), в то время как <b>ПСТРБ</b> - для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д.</p>
|
||||||
|
<p>Синтаксис функции <b>ПСТР/ПСТРБ</b>:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ПСТР(текст;начальная_позиция;число_знаков)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ПСТРБ(текст;начальная_позиция;число_знаков)</em></b></p>
|
||||||
|
<p><em>где</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>текст</em></b> - строка, из которой требуется извлечь символы.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>начальная_позиция</em></b> - позиция, с которой должно начаться извлечение.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>число_знаков</em></b> - количество символов, которое требуется извлечь.</p>
|
||||||
|
<p>Эти данные можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.</p>
|
||||||
|
<p>Чтобы применить функцию <b>ПСТР/ПСТРБ</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>выделите ячейку, в которой требуется отобразить результат,</li>
|
||||||
|
<li>щелкните по значку <b>Вставить функцию</b> <img alt="Значок Вставить функцию" src="../images/insertfunction.png" />, расположенному на верхней панели инструментов,
|
||||||
|
<br />или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду <b>Вставить функцию</b>,
|
||||||
|
<br />или щелкните по значку <img alt="Значок Функция" src="../images/function.png" /> перед строкой формул,
|
||||||
|
</li>
|
||||||
|
<li>выберите из списка группу функций <b>Текст и данные</b>,</li>
|
||||||
|
<li>щелкните по функции <b>ПСТР/ПСТРБ</b>,</li>
|
||||||
|
<li>введите требуемые аргументы через точку с запятой,</li>
|
||||||
|
<li>нажмите клавишу <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Результат будет отображен в выбранной ячейке.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Функция ПСТР/ПСТРБ" src="../images/mid.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Функция ЗАМЕНИТЬ/ЗАМЕНИТЬБ</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Поиск" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Функция ЗАМЕНИТЬ/ЗАМЕНИТЬБ</h1>
|
||||||
|
<p>Функция <b>ЗАМЕНИТЬ/ЗАМЕНИТЬБ</b> - это одна из функций для работы с текстом и данными. Заменяет ряд символов на новый, с учетом заданного количества символов и начальной позиции. Функция <b>ЗАМЕНИТЬ</b> предназначена для языков, использующих однобайтовую кодировку (SBCS), в то время как <b>ЗАМЕНИТЬБ</b> - для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д.</p>
|
||||||
|
<p>Синтаксис функции <b>ЗАМЕНИТЬ/ЗАМЕНИТЬБ</b>:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ЗАМЕНИТЬ(стар_текст;начальная_позиция;число_знаков;нов_текст)</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ЗАМЕНИТЬБ(стар_текст;начальная_позиция;число_знаков;нов_текст)</em></b></p>
|
||||||
|
<p><em>где</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>стар_текст</em></b> - исходный текст, который требуется заменить.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>начальная_позиция</em></b> - начальная позиция ряда символов, которые требуется заменить.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>число_знаков</em></b> - количество символов, которые требуется заменить.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>нов_текст</em></b> - новый текст.</p>
|
||||||
|
<p>Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.</p>
|
||||||
|
<p>Чтобы применить функцию <b>ЗАМЕНИТЬ/ЗАМЕНИТЬБ</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>выделите ячейку, в которой требуется отобразить результат,</li>
|
||||||
|
<li>щелкните по значку <b>Вставить функцию</b> <img alt="Значок Вставить функцию" src="../images/insertfunction.png" />, расположенному на верхней панели инструментов,
|
||||||
|
<br />или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду <b>Вставить функцию</b>,
|
||||||
|
<br />или щелкните по значку <img alt="Значок Функция" src="../images/function.png" /> перед строкой формул,
|
||||||
|
</li>
|
||||||
|
<li>выберите из списка группу функций <b>Текст и данные</b>,</li>
|
||||||
|
<li>щелкните по функции <b>ЗАМЕНИТЬ/ЗАМЕНИТЬБ</b>,</li>
|
||||||
|
<li>введите требуемые аргументы через точку с запятой,
|
||||||
|
<p class="note"><b>Примечание</b>: функция ЗАМЕНИТЬ <b>учитывает регистр</b>.</p>
|
||||||
|
</li>
|
||||||
|
<li>нажмите клавишу <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Результат будет отображен в выбранной ячейке.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Функция ЗАМЕНИТЬ" src="../images/replace.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Функция ПРАВСИМВ/ПРАВБ</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Поиск" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Функция ПРАВСИМВ/ПРАВБ</h1>
|
||||||
|
<p>Функция <b>ПРАВСИМВ/ПРАВБ</b> - это одна из функций для работы с текстом и данными. Извлекает подстроку из заданной строки, начиная с крайнего правого символа, согласно заданному количеству символов. Функция <b>ПРАВСИМВ</b> предназначена для языков, использующих однобайтовую кодировку (SBCS), в то время как <b>ПРАВБ</b> - для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д.</p>
|
||||||
|
<p>Синтаксис функции <b>ПРАВСИМВ/ПРАВБ</b>:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ПРАВСИМВ(текст;[число_знаков])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ПРАВБ(текст;[число_знаков])</em></b></p>
|
||||||
|
<p><em>где</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>текст</em></b> - строка, из которой требуется извлечь подстроку,</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>число_знаков</em></b> - количество символов подстроки. Необязательный аргумент. Если он опущен, ему присваивается значение 1.</p>
|
||||||
|
<p>Эти данные можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.</p>
|
||||||
|
<p>Чтобы применить функцию <b>ПРАВСИМВ/ПРАВБ</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>выделите ячейку, в которой требуется отобразить результат,</li>
|
||||||
|
<li>щелкните по значку <b>Вставить функцию</b> <img alt="Значок Вставить функцию" src="../images/insertfunction.png" />, расположенному на верхней панели инструментов,
|
||||||
|
<br />или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду <b>Вставить функцию</b>,
|
||||||
|
<br />или щелкните по значку <img alt="Значок Функция" src="../images/function.png" /> перед строкой формул,
|
||||||
|
</li>
|
||||||
|
<li>выберите из списка группу функций <b>Текст и данные</b>,</li>
|
||||||
|
<li>щелкните по функции <b>ПРАВСИМВ/ПРАВБ</b>,</li>
|
||||||
|
<li>введите требуемые аргументы через точку с запятой,</li>
|
||||||
|
<li>нажмите клавишу <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Результат будет отображен в выбранной ячейке.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Функция ПРАВСИМВ" src="../images/right.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Функция ПОИСК/ПОИСКБ</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../editor.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="Поиск" type="text" onkeypress="doSearch(event)">
|
||||||
|
</div>
|
||||||
|
<h1>Функция ПОИСК/ПОИСКБ</h1>
|
||||||
|
<p>Функция <b>ПОИСК/ПОИСКБ</b> - это одна из функций для работы с текстом и данными. Возвращает местоположение заданной подстроки в строке. Функция <b>ПОИСК</b> предназначена для языков, использующих однобайтовую кодировку (SBCS), в то время как <b>ПОИСКБ</b> - для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д.</p>
|
||||||
|
<p>Синтаксис функции <b>ПОИСК/ПОИСКБ</b>:</p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ПОИСК(искомый_текст;просматриваемый_текст;[начальная_позиция])</em></b></p>
|
||||||
|
<p style="text-indent: 150px;"><b><em>ПОИСКБ(искомый_текст;просматриваемый_текст;[начальная_позиция])</em></b></p>
|
||||||
|
<p><em>где</em></p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>искомый_текст</em></b> - подстрока, которую требуется найти.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>просматриваемый_текст</em></b> - строка, в которой выполняется поиск.</p>
|
||||||
|
<p style="text-indent: 50px;"><b><em>начальная_позиция</em></b> - позиция, с которой требуется начать поиск. Необязательный аргумент. Если он опущен, поиск выполняется с начала строки <b><em>просматриваемый_текст</em></b>.</p>
|
||||||
|
<p>Эти данные можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.</p>
|
||||||
|
<p class="note"><b>Примечание</b>: если соответствий не найдено, функция ПОИСК/ПОИСКБ возвращает ошибку <b>#ЗНАЧ!</b>.</p>
|
||||||
|
<p>Чтобы применить функцию <b>ПОИСК/ПОИСКБ</b>,</p>
|
||||||
|
<ol>
|
||||||
|
<li>выделите ячейку, в которой требуется отобразить результат,</li>
|
||||||
|
<li>щелкните по значку <b>Вставить функцию</b> <img alt="Значок Вставить функцию" src="../images/insertfunction.png" />, расположенному на верхней панели инструментов,
|
||||||
|
<br />или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду <b>Вставить функцию</b>,
|
||||||
|
<br />или щелкните по значку <img alt="Значок Функция" src="../images/function.png" /> перед строкой формул,
|
||||||
|
</li>
|
||||||
|
<li>выберите из списка группу функций <b>Текст и данные</b>,</li>
|
||||||
|
<li>щелкните по функции <b>ПОИСК/ПОИСКБ</b>,</li>
|
||||||
|
<li>введите требуемые аргументы через точку с запятой,
|
||||||
|
<p class="note"><b>Примечание</b>: функция ПОИСК/ПОИСКБ <b>НЕ</b> учитывает регистр.</p>
|
||||||
|
</li>
|
||||||
|
<li>нажмите клавишу <b>Enter</b>.</li>
|
||||||
|
</ol>
|
||||||
|
<p>Результат будет отображен в выбранной ячейке.</p>
|
||||||
|
<p style="text-indent: 150px;"><img alt="Функция ПОИСК" src="../images/search.png" /></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue