Main > Free Download Search >

Free microsoft excel formulas software for linux

microsoft excel formulas

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 645
MillScript-Excel 0.1

MillScript-Excel 0.1


MillScript-Excel project is a Java library for reading and writing Excel spreadsheets. more>>
MillScript-Excel project is a Java library for reading and writing Excel spreadsheets. The goal of the library is primarily to support all versions of Microsoft Excel, but other spreadsheet formats should also be added. The API is geared towards easy integration with other applications.

<<less
Download (0.50MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
952 downloads
Linux on the Microsoft Xbox

Linux on the Microsoft Xbox


The Xbox Linux Project aims to privide a version of GNU/Linux for the Xbox, so that it can be used as an ordinary computer. more>>
The Xbox Linux Project aims to privide a version of GNU/Linux for the Xbox, so that it can be used as an ordinary computer.
Linux should make use of all Xbox hardware and allow to install and run software from standard i386 Linux distributions.
An Xbox with Linux can be a full desktop computer with mouse and keyboard, a web/email box connected to TV, a server or router or a node in a cluster.
You can either dual-boot or use Linux only; in the latter case, you can replace both IDE devices. And yes, you can connect the Xbox to a VGA monitor.
Main features:
- You can run Linux on your Xbox!
- You can do it without a modchip!
- You can do it without opening your Xbox!
<<less
Download (7.0MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1686 downloads
The Formula 1 Toolbar 2.2.0.9

The Formula 1 Toolbar 2.2.0.9


The Formula 1 Toolbar is a firefox extension allowing you to easily access to F1 news worldwide (international news). more>> <<less
Added: 2009-07-26 License: MPL Price: FREE
1 downloads
KFormula 1.6.1

KFormula 1.6.1


KFormula can be used to create and edit mathematical formulas that can be included in other KOffice documents. more>>
KFormula can be used to create and edit mathematical formulas that can be included in other KOffice documents. KFormula provides simple input facilities and supports the functionality you expect from a KOffice application.
Main features:
- Easy Greek letter insertion
- Intelligent cursor movement
- Advanced syntax highlighting
- Multi-level undo support
- LaTeX export (copy and paste into a text editor)
- MathML import
KFormula uses the KOffice formula drawing library. If you have to deal with many formulas you may wish to use a KFormula object embedded in KWord or KSpread.
<<less
Download (55.4MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1060 downloads
php_writeexcel 0.3.0

php_writeexcel 0.3.0


php_writeexcel is a port of John McNamaras excellent Spreadsheet::WriteExcel Perl package to PHP. more>>
php_writeexcel is a port of John McNamaras excellent Spreadsheet::WriteExcel Perl package to PHP. It allows you to generate Microsoft Excel documents on your PHP enabled Web server without any other tools.
Ive included six example PHP scripts which are also taken out of the
Spreadsheet::WriteExcel package and ported to PHP:
- example-simple.php
- example-merge2.php
- example-stocks.php
- example-textwrap.php
- example-demo.php
- example-bigfile.php
All you have to do is to tar xzvf the package to a directory accessible via a web server. Then fetch any of the example scripts with your favourite web browser and Excel should come into place and show you a sheet.
Basically all features of Spreadsheet::WriteExcel are supported and thanks to a lot of people (see CHANGELOG) who contributed code and bug fixes, most things seem to work. However, please remember that its still in beta stage, so there are probably some bugs left.
Spreadsheet::WriteExcel uses the Parse::RecDescent package for formula support. Andreas Brodowski has imported and changed the PEAR::Spreadsheet Parser.php file, so formulas are supported since version 0.2.2.
Spreadsheet::WriteExcel uses the OLE::Storage_Lite package for supporting Excel files bigger than approx. 7 MB. I have ported this package already and called it php_ole. But I really dont know how reliable it is, so use it with care!
Enhancements:
- PHP5 compatibility has been added.
- Several bugs have been fixed.
<<less
Download (0.070MB)
Added: 2005-11-02 License: LGPL (GNU Lesser General Public License) Price:
1458 downloads
IronPython 1.0 Final

IronPython 1.0 Final


IronPython is an implementation of Python running on Microsoft .NET / Mono. more>>
IronPython is an implementation of Python running on Microsoft .NET / Mono. It supports an interactive interpreter with fully dynamic compilation.

IronPython is well integrated with the rest of the framework and makes all .NET libraries easily available to Python programmers.
<<less
Download (MB)
Added: 2006-09-06 License: Other/Proprietary License Price:
1148 downloads
XML::Excel 0.02

XML::Excel 0.02


XML::Excel is a Perl extension converting Excel files to XML. more>>
XML::Excel is a Perl extension converting Excel files to XML.

SYNOPSIS

use XML::Excel;
$excel_obj = XML::Excel->new();
$excel_obj = XML::Excel->new(%attr);

$status = $excel_obj->parse_doc(file_name);
$status = $excel_obj->parse_doc(file_name, %attr);

$excel_obj->declare_xml(%attr);
$excel_obj->declare_doctype(%attr);

$excel_obj->print_xml(file_name, %attr);

XML::Excel is a new module which is going to be upgraded very often as my time permits. For the time being it uses Spreadsheet::ParseExcel module object default values to parse the (*.xls) document and then creates a perl data structure with xml tags names and data. At this point it does not allow for a write as you parse interface but is the first upgrade for the next release. I will also allow more access to the data structures and more documentation.

I will also put in more support for XML, since currently it only allows a simple XML structure. Currently you can modify the tag structure to allow for attributes. No DTD support is currently available, but will be implemented in a soon coming release. As the module will provide both: object and event interfaces, it will be used upon individual needs, system resources, and required performance. Ofcourse the DOM implementation takes up more resources and in some instances timing, its the easiest to use.

<<less
Download (0.010MB)
Added: 2006-09-16 License: Perl Artistic License Price:
1135 downloads
Spreadsheet::WriteExcelXML 0.10

Spreadsheet::WriteExcelXML 0.10


Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format. more>>
Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format.

SYNOPSIS

To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls:

use Spreadsheet::WriteExcelXML;

# Create a new Excel workbook
my $workbook = Spreadsheet::WriteExcelXML->new("perl.xls");

# Add a worksheet
$worksheet = $workbook->add_worksheet();

# Add and define a format
$format = $workbook->add_format(); # Add a format
$format->set_bold();
$format->set_color(red);
$format->set_align(center);

# Write a formatted and unformatted string, row and column notation.
$col = $row = 0;
$worksheet->write($row, $col, "Hi Excel!", $format);
$worksheet->write(1, $col, "Hi Excel!");

# Write a number and a formula using A1 notation
$worksheet->write(A3, 1.2345);
$worksheet->write(A4, =SIN(PI()/4));

The Spreadsheet::WriteExcelXML module can be used to create an Excel file in XML format. The Excel XML format is supported in Excel 2002 and 2003.

Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. The module supports strings up to 32,767 characters and the strings can be in UTF8 format.

Spreadsheet::WriteExcelXML uses the same interface as Spreadsheet::WriteExcel.
This module cannot, as yet, be used to write to an existing Excel XML file.

<<less
Download (0.14MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
Vista Basic 2

Vista Basic 2


Vista Basic provides a theme similar to Microsoft Vista. more>>
Vista Basic provides a theme similar to Microsoft Vista.

window borders similar to those of Microsoft Vista when using non Aero compatible software (such as JRE 6 or Photoshop CS 2)

<<less
Download (0.015MB)
Added: 2007-04-17 License: Public Domain Price:
678 downloads
mscompress 0.3

mscompress 0.3


mscompress is a Microsofts compress.exe/expand.exe compatible (de)compressor. more>>
mscompress is a Microsofts "compress.exe/expand.exe" compatible (de)compressor.
mscompress project contains two programs:
- msexpand, which decompress files compressed by Microsoft compress.exe utility (e.g. Win 3.x installation files)
- mscompress, which compress files using LZ77 compression algorithm. Output files can be decompressed using Microsoft expand.exe or msexpand(1).
To install it on your Unix box, configure the package ("./configure") and then type "make all test install".
<<less
Download (0.006MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
1000 downloads
Spreadsheet::WriteExcel 2.18

Spreadsheet::WriteExcel 2.18


Spreadsheet::WriteExcel is a Perl module which can be used to create native Excel binary files. more>>
Spreadsheet::WriteExcel module is can be used to create native Excel binary files.

Formatted text and numbers can be written to multiple worksheets in a workbook. Formulas and functions are also supported. It is 100% Perl and doesnt require any Windows libraries or a copy of Excel.

It will also work on the majority of Unix and Macintosh platforms. Generated files are compatible with Excel 97, 2000, 2002, and 2003, and with OpenOffice and Gnumeric. An older version also supports Excel 5/95.

<<less
Download (0.46MB)
Added: 2007-01-25 License: Artistic License Price:
1024 downloads
Spreadsheet::ParseExcel 0.32

Spreadsheet::ParseExcel 0.32


Spreadsheet::ParseExcel is a Perl module to get information from an Excel file. more>>
Spreadsheet::ParseExcel is a Perl module to get information from an Excel file.

This module allows you to get information from Excel file.

This module can handle files of Excel95, 97 and 2000. (and now supports Excel4)

The module will work on the majority of Windows, UNIX and Macintosh platforms.

<<less
Download (0.096MB)
Added: 2007-05-05 License: Perl Artistic License Price:
919 downloads
Color::Fade 0.01

Color::Fade 0.01


Color::Fade provides a Perl extension for fading text colors. more>>
Color::Fade provides a Perl extension for fading text colors.

Color::Fade uses mathematical formulas to take an input string of virtually any length, and virtually any number of colors, and assign an individual color to each character to fade between each of the input colors.

In other words, it makes your sentences look really pretty.

Methods

Fade $string among the colors in @colors, where $string is a string of length greater than zero, and @colors is an array of colors in six byte hexadecimal format, with or without the leading octothorpe. @colors must have at least two elements.

When called in array context, the method returns an array in which each element is of the format:

y

For each character, where xxxxxx is a hexadecimal color code and y is one character from the original string.

When called in scalar context, this array is joined before being returned.

<<less
Download (0.006MB)
Added: 2007-03-29 License: Perl Artistic License Price:
939 downloads
MillScript 10.2.0

MillScript 10.2.0


MillScript is an easy to use language for batch producing templated Web sites. more>>
MillScript projetc is a full featured, yet easy to use language for the batch production of templated Web sites.
The language is a Java-based, early implementation of Spice: an experimental language developed by the OpenSpice group.
MillScript benefits from a carefully considered and consistent syntax that should be most beneficial to ocassional and cross-over programmers. Its features include multiple valued expressions, embedded XML tags, powerful for loops, a rich template system, lambda functions, closures, classes, and methods, regular expressions, and more.
Enhancements:
- Temporarily removed SVG support as the Apache License is not compatible with the GPL. As soon as I find a GPL compatible alternative Ill reinstate this functionality
- Implemented Serializable for all classes are based on MillScript-Util functionality
- Fixed an issue with embedded XML which caused an exception when an attribute value was not a string
- Fixed an off by one error in the subrange function(used by the subrange syntax [X..Y])
- Updated to use new AlertReporter interface from MillScript-Alert
- Removed the Excel file loader, this can now be found in the MillScript-Excel package, which uses the new plugin system to add the loader into an installation.
- Added a simple plugin infrastructure, which scans for plugin configuration files on startup.
- Fixed the HTML renderers emtpy element tag set to match the HTML specification, i.e. an IFRAME is no longer considered an empty element, but the non-standard BGSOUND, SPACER and WBR tags are.
- Added XML namespace support to MillScript, via XML files in an inventory, but not within the MillScript language(which will come later)
- Added support for fat strings, i.e. strings that can span multiple lines. Fat strings are intended to bridge the gap between single line strings and autoloadable text files, i.e. medium length strings.
- Added support for chained relational expressions, e.g. x < y < z, where each expression is evaluated once and only if required.
- Added support for loading Excel spreadsheets. This is strictly limited to spreadsheets with text, numbers and very simple formulas(e.g. simple arithmetic and no floating point). Upgrades to this support are planned :-)
- Ensure methods report their name, rather than pretending to be anonymous.
- Added a properties file renderer and function, so you can now easily write Java properties files.
- Migrating to Java 5 - added generics type information, annotated for overrides and suppressing warnings and added enumerations
- Simplified name resolution code.
- Migrated Map(and List, etc) functionality from the Java Collections API to the new MillScript-Util one. This unifies Lists and Maps at the Java level, rather than the MillScript one.
- Fixed the bug stopping you from updating an list when indexing with negative indicies.
- Migrated all internal use of XML to MillScripts own custom XML parser and API, rather than the previous SAX and DOM based ones. This has included using the new parsers Name and Attribute(s) interfaces and implementations where appropriate.
- Migrated the template loaders to use the SAX API rather than transforming a DOM object.
- Added te-common library for command line argument parsing. Added a Java implementation of the website and status commands. More will follow.
- Added serialVersionUIDs to serializable classes, to enable version handling when serializing.
- Added a TrueType font loader, so you can now put TrueType fonts in your inventory and load them. When we have a graphics API youll be able to use these to draw onto images.
<<less
Download (6.4MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
ElectricForm 0.0.3

ElectricForm 0.0.3


ElectricForm is a program to calculate electric formulas. more>>
This is a program that will help you at your electronic based projects or at school. For it to calculate you will have to enter data in two of the four data fields. The four data fields are: electric power [P], resistance[R], current[I] and voltage[V].

As an example if you want to calculate the resistance[R] you wil have to supply the value for the electric power[P] and current[I] or you can supply the value of the power[P] and voltage[V].

<<less
Download (0.049MB)
Added: 2005-09-12 License: GPL (GNU General Public License) Price:
1505 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5