How do I disable the contents of a cell without deleting it.
Edit: Changed subject, was Diabling cell contents [sic] Make your post understandable by others -- MrProgrammer, forum moderator |
Edit: Changed subject, was Diabling cell contents [sic] Make your post understandable by others -- MrProgrammer, forum moderator |
The SUM function will ignore cells with text values. Indicate that a cell contains text by prefixing the value with an apostrophe. Remove the apostrophe to change the value to numeric so SUM will add it. Read about the apostrophe in the Calc Guide. It is the cell value (numeric versus text) which is important here, not the cell format.Jessiebessie wrote: ↑Mon May 19, 2025 11:41 am Some of the cells contain monthly payments which I only want to enable as and when they have been made.
Agreed. Using a layout with a column for each month will make it cumbersome to use in Calc. Using separate sheets for each year will make the spreadsheet even more awkward. Use a filter to show the data of interest, say a particular month or year. Use a pivot table to summarize data instead doing that with formulas. Pivot tables are one of the most important features in Calc. There are thousands of topics on the forum from people who struggle to perform calculations until their data is organized so that they can use Calc's features effectively. You cannot use pivot tables if you create a column for each month or if you distribute your data onto multiple sheets. Read about filters and pivot tables in the Calc Guide.
You may then need to be aware of the implications of using "wrong" data type to trick the application:Jessiebessie wrote: ↑Mon May 19, 2025 3:50 pm Thanks for the suggestion of using an 'apostrophe'. This is much easier than using minus and plus signs.