notally

A smart notepad that finds numbers in your text and shows the total.

Use ‘notally’ to quickly jot down:

  • Quotes and estimates

  • Shopping or to-do lists

  • Expenses and daily spending

  • Anything with numbers, freestyle

Put notes into folders to see combined totals—perfect for trip budgets or tracking categories.

Advanced search lets you filter and total exactly what you need.

No spreadsheets. No calculators. Just type and total.


Video: Getting Started — All the Basics Explained


Video: Step-by-Step Guide to Tracking Expenses with Notally


Notally Privacy Policy

‘Notally’ (iOS version) and ‘Notally for Android’ do not collect any data. All notes remain on your device unless you export it. If you enable iOS version’s iCloud sync, your data will be copied to your iCloud drive, which no one but you has access.


For Developers

iOS version supports URL scheme. Send text by using notally:// URL scheme. Below is a sample code.

    NSString *encodedText = [stringForClipboard stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]];
    NSURLComponents *components = [NSURLComponents componentsWithString:@"notally://"];
    NSURLQueryItem *newnoteQuery = [NSURLQueryItem queryItemWithName:@"newnote" value:encodedText];
    components.queryItems = @[newnoteQuery];
    NSURL *url = components.URL;
    UIApplication *ourApplication = [UIApplication sharedApplication];
    if ([ourApplication canOpenURL:url]) {

            [ourApplication openURL:url options:@{} completionHandler:^(BOOL success) {
                //
            }];
    }