I have an export from quickbooks showing all outstanding invoices. Each invoice consists of only 2 line items: “Consulting Fee” and “Admin Fee”. The QB export creates a row for each of the line items. They share a common column datapoint of “Invoice”. The data requires a lot of massaging […]
Monthly Archives: January 2023
I have a column T that contains numbers with a string suffix. I want to have a sum of all the numbers in the column (without the string), based upon whether there is a number value in a different column X. In my mind, the formula should be something like […]
Was going to comment on this question but I do not have the rep. Is there a way to do this recursively? I would like to give all privileges to any administrator user. Nothing I do in the windows GUI seems to stick.
I am using the following formula to identify weeks of no usage over 26 weeks of information: {=MAX(FREQUENCY(IF(J4:AI4<0,COLUMN(J4:AI4)),IF(J4:AI4>0,COLUMN(J4:AI4))))} where the data in J4:AI4 is sum of usage in each week, weeks numbered 1-26 in row 3. This formula returns the number of consecutive weeks an item was not used. (NOTE: […]
I enabled tmpfs overlayroot running following. $ sudo sed -i 's/overlayroot=""/overlayroot="tmpfs"/g' /etc/overlayroot.conf After rebooting, Ubuntu boots as read-only and everything works as expected and nothing is written to disk (confirmed using disk checksum). Then, when I set disk to hardware read-only (a feature of datAshur PRO² USB flash drives), Ubuntu […]
Learn all the tricks and techniques for using the JavaScript async and await keywords to master flow control in your programs. Continue reading A Beginner’s Guide to JavaScript async/await, with Examples on SitePoint.
I have updraded Magento from 2.4.0 to 2.4.5 and now in the product page, there’s an error: Uncaught TypeError: Cannot read properties of undefined (reading ‘set’) update: function (sections) { var sectionId = 0, sectionDataIds = $.cookieStorage.get('section_data_ids') || {}; _.each(sections, function (sectionData, sectionName) { sectionId = sectionData['data_id']; sectionDataIds[sectionName] = sectionId; […]
I’m trying to pull a customers collection but i need to join it to their billing address details to add filters. The only info i can find so far seems to be for Magento 1, such as this: Magento join customer collection with customer address I have tried similar but […]
Currently the information I receive from older version of PayGate in the additional_information field of the sales_order_payment table is: {"paygate-payment-type":"EW-MOBICRED","method_title":"PayGate"} and new version I’m getting this : {"raw_details_info":{"PAY_REQUEST_ID":"0155ED4B-6D5B-8BB7-F6DB-9EBE834B65AD","TRANSACTION_STATUS":"1","CHECKSUM":"6468b5614c4404633de42c94bfa71c5d","PAYMENT_TITLE":"PAYGATE_PAYWEB"}} How to get similar values as old version. I have tried modifying the codes from Model and controller but i fail to […]