This is sort of a broad question - hope I'm posting in the right board ....
How can I go apart setting up a database (Im thinking about access here? )
I want to set up some fields for my company - such as name , number , address , email address etc etc.
I have a dymo label printer to print out the barcodes. Ive tried inputting the information on the barcode itself but the barcode becomes 'too big to print' , so I want to be able to link a database to the barcode so when its scanned it will load up all the information.
Sorry I have no code - I just have no place to start ):
Cheers for the help!
If the barcode is too large, you can change its size in Properties in DYMO Label.
There is a function in DYMO Label called Import Data and Print. You can design a label with barcode and text objects, then select a file and link columns to objects (basic drag and drop). I hope that answers the question.
Related
I have a list of objects. In my case, the object is a contract (agreement). The contract has address field as string
I want to make it possible to filter by address. Or rather, the user enters the beginning or part of the address and the table is filtered based on the user input text. The problem is that the user can enter with a capital or small letter or something else, and thus strict equality does not work. I need a matching address with user input.
Data structure:
Input box controller:
This input box controller works only then user put exactly the same address as in data structure, for example Juhkentali tn 32, Tallinn. But my idea is, that user can enter only juhkentali and will see all contract with matched address
Please help me, how I could solve this problem.
I was facing the same issue. So I converted it to lower case using the lower function as commonly all searches are in lower case.
For example -
My data had a patient name column with the following values
Wagner,
ROBBINS,
doe,
junioR
So I converted the patient name column to lower case and used it in the input box. And, my visualizations used the original patient name column.
The only restriction with this is that the users have to search only in lower case.
Please let me know if this helps or if you got a better solution.
I have a column in Google sheets that contains some text with a country code like US, JP, MX etc... somewhere in the text. I want to create another column next to it where it shows only the country code without the rest of the text.
The input looks like any of the following examples: "editing JP data", "JP data edits", "edited data for JP". The country code might be part of other data in some cases but as part of a word, not on its own...
I managed to extract the code for one country with a formula like =REGEXEXTRACT(F2,"JP") but I haven't managed to combine more than one regextract formulas. Any help would be greatly appreciated.
try:
=ARRAYFORMULA(IFERROR(REGEXEXTRACT(F2:F, "JP|US|MX")))
i have a field that lists all email address and i want to get the number of all email addresses with a certain domain, for example, "mydomain.com".
I can do this with a scorecard and a filter but I need to do this with a custom formula so i can also get the average. My finial goal is to get the average of "mydomain.com" email addresses vs. the total.
I tried this
COUNT(CONTAINS_TEXT(profile.email, "#mydomain.com"))
But, of course, this does not work.
Maybe a COUNTIF?
Bottom lime, i need to figure out how to get the number of email addresses from a specific domain in to a variable so i can then do some math on it ;)
I hope this makes sense.
Thank you!
Everything I've read points to using a CASE statement, however I've not actually managed to get one to work.
Here's the documentation: https://support.google.com/datastudio/answer/7020724
I have a SQlite Database with an id,name,number.
My problem is that I need a command which gives me the name connected with an AutoComplete function in an editView and in another editView there should stand the correct number related to the name. For example: I have the name rice and the number 50. I want the rice in the first editText and connected to the AutoComplete and the number 50 in another editText.
I am looking up the internet and also some manuals for SQLite for that, but it seems like I am too blind to find the right command. Someone has a suggestion for a tutorial where this is shown or someone has the right command for me to read this information out of my database.
SELECT number FROM table_id_name_number WHERE name = 'rice';
I have a contact manager program and I would like to offer the feature to import csv files. The problem is that different data sources order the fields in different ways. I thought of programming an interface for the user to tell it the field order and how to handle exceptions.
Here is an example line in one of many possible field orders:
"ID#","Name","Rank","Address1","Address2","City","State","Country","Zip","Phone#","Email","Join Date","Sponsor ID","Sponsor Name"
"Z1234","Call, Anson","STU","1234 E. 6578 S.","","Somecity","TX","United States","012345","000-000-0000","someemail#gmail.com","5/24/2010","z12343","Quantum Independence"
Notice that in one data field "Name" there is a comma to separate last name and first name and in another there is not.
My plan is to have a line for each field (ie ID, Name, City etc.) and a statement "import to" and list box with options like: Don't Import, Business>Join Date, First Name, Zip
and the program recognizes those as properties of an object...
I'd also like the user to be able to record preset field orders so they can re-use them for csv files from the same download source.
Then I also need it to check if a record all ready exists (is there a record for Anson Call all ready?) and allow the user to tell it what to do if there is a record (ie mailing address may have changes, so if that field is filled overwrite it, or this mailing address is invalid, leave the current data untouched for this person, overwrite the rest).
While I'm capable of coding this...i'm not very excited about it and I'm wondering if there's a tool or set of tools out there to all ready perform most of this functionality...
I hope this makes sense...
Is there a header row?
usually in CSV files, the first line is the header.
If so you could use the header line to determine the order, just have a list of column names, and only prompt the user if a column name does not match.(this could then be auto added into the predefined list).
EDIT:
even if a header does not exist, its simple enough to add one. The file can be manually edited. Alternatively in your program let the user define it (from your predefined list)
I can't find any tools all ready out there and no one has replied otherwise, so for the sake of leaving a question answered until otherwise notified the answer is: no.