This video demonstrates how to find all matching values between two columns in LibreOffice Calc. Precisely, in this video, we fill in columns A and B with random integer values between the numbers 1 and 100 (inclusive). The formula to generate the random values was the following: =RANDBETWEEN(1;100) After we…
In the world of spreadsheet applications, LibreOffice Calc stands out as a versatile and powerful tool for managing data. It offers a wide array of features that can help you organize, analyze, and make sense of your data. One of these features, often underutilized, is the Subtotals functionality. In this…
Get workbook filename only For Linux and Mac =TRIM( RIGHT( SUBSTITUTE( LEFT( CELL("filename"), FIND("#", CELL("filename")) -2 ), "/", REPT(" ", LEN(CELL("filename"))) ), LEN(CELL("filename")) ) ) For Windows =TRIM( RIGHT( SUBSTITUTE( LEFT( CELL("filename"), FIND("#", CELL("filename")) -2 ), "\", REPT(" ", LEN(CELL("filename"))) ), LEN(CELL("filename")) ) ) The only change is changing the…