LibreOffice 7.3 Help
The following describes and lists some of the available add-in functions.
You will also find a description of the LibreOffice Calc add-in interface in the Help. In addition, important functions and their parameters are described in the Help for the Shared LibraryLibreOffice Calc add-in DLL.
LibreOffice შეიცავს LibreOffice Calc-ის დამატების ინტერფეისის მაგალითს.
ანალიზის ფუნქციები პირველი ნაწილი
ანალიზის ფუნქციები მეორე ნაწილი
Calculates the number of days of the month in which the date entered occurs.
DAYSINMONTH(თარიღი)
Date is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of LibreOffice.
WEEKSINYEAR(A1) აბრუნებს 53 თუ A1 შეიცავს 2/17/70, მართებული თარიღი 1970 წლითვის.
Calculates the number of days of the year in which the date entered occurs.
DAYSINYEAR(თარიღი)
Date is any date in the respective year. The Date parameter must be a valid date according to the locale settings of LibreOffice.
WEEKSINYEAR(A1) აბრუნებს 53 თუ A1 შეიცავს 2/17/70, მართებული თარიღი 1970 წლითვის.
Determines whether a year is a leap year. If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE).
ISLEAPYEAR(თარიღი)
Date specifies whether a given date falls within a leap year. The Date parameter must be a valid date.
ISLEAPYEAR(A1) აბრუნებს 1, თუ A1 შეიცავს 2/29/68, თარიღი არის 1968 წლის 29 თებერვალი.
You may also use =ISLEAPYEAR(DATE(1968;2;29)) or =ISLEAPYEAR("1968-02-29") giving the date string in the ISO 8601 notation.
Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number.
>ორ თარიღს შორის გამოთვლის თვეების სხვაობას.
MONTHS(საწყისი თარიღი;საბოლოო თარიღი; ტიპი)
საწყისი თარიღი: თარიღი.
მონაცემი_2 არის მონაცემთა მეორე წყობა.
ტიპი: გამოთვლის სხვაობის ტიპს. შესაძლო მნიშვნელობებია 0 (ინტერვალი) და 1 (კალენდარი თვეები).
Encrypts a character string by moving the characters 13 positions in the alphabet. After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text.
ROT13(ტექსტი)
Text is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code.
=ROT13("Gur Qbphzrag Sbhaqngvba jnf sbhaqrq va Frcgrzore 2010.") returns the string "The Document Foundation was founded in September 2010.". Notice how spaces, digits, and full stops are unaffected by ROT13.
Refer to the ROT13 wiki page for more details about this function.
ანგარიშობს სხვაობას კვირებში ორ თარიღს შორის.
WEEKS(საწყისი თარიღი;საბოლოო თარიღი; ტიპი)
საწყისი თარიღი: თარიღი.
მონაცემი_2 არის მონაცემთა მეორე წყობა.
ტიპი: გამოთვლის სხვაობის ტიპს. შესაძლო მნიშვნელობებია 0 (ინტერვალი) და 1 (კვირების რაოდენობა).
Calculates the number of weeks of the year in which the date entered occurs. The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur.
WEEKSINYEAR(თარიღი)
Date is any date in the respective year. The Date parameter must be a valid date according to the locale settings of LibreOffice.
WEEKSINYEAR(A1) აბრუნებს 53 თუ A1 შეიცავს 2/17/70, მართებული თარიღი 1970 წლითვის.
ორ თარიღს შორის გამოთვლის წლების სხვაობას.
YEARS(საწყისი თარიღი;საბოლოო თარიღი; ტიპი)
საწყისი თარიღი: თარიღი.
მონაცემი_2 არის მონაცემთა მეორე წყობა.
ტიპი: გამოთვლის სხვაობის ტიპს. შესაძლო მნიშვნელობებია 0 (ინტერვალი) და 1 (კალენდარი წლები).
Add-ins can also be implemented through the LibreOffice API.