I am using Google AppsSheet as a front end to a small business Application I built for a friend using Google Sheets as the user interface, dashboard and database. The Sheet has a dashboard and mockup invoicing system that can display a signature image at the bottom of the invoice that was captured using AppSheet. The filename of the signature is stored in a column as well as all of the other invoice data. On the invoice page, I have a dropdown list of customers and after selecting the customer I click a button that runs a script to populate the invoice with all of the customer data. For the Signature, I am using the Google Sheets formula " =IMAGE("https://drive.google.com/open?id=" & CELL W/IMAGE ID) " to display the captured image on the Google drive. This part works fine BUT only if I use the ID of the image, not the Filename of the image. If have to manually add the image ID, this defeats the automation aspect and I can not expect my buddy to figure that out for every image...
Finally the Question:
Since I have the file name of the image, I would like to get the ID of the image to save in a new column for the recall of the signature Image at the bottom of the invoice page. Then he can export the invoice as a PDF and send to the customer.
Is this possible or is there another way to accomplish displaying an image in Google Sheets using the Filename of an image stored in a Google Drive folder?
I'm a noob and have accomplished a lot using stackOverflow as my main coding reference. I applaud all who contribute to helping us noobs out. Thanks in advance!
I have searched all over google and tried using .getId(), getFilesByName() then trying to get the ID.... As I mentioned before... I am a noob and still wrapping my head around how Objects and Methods work together and trying to visualize the relationships between all of the moving parts. Any good resources for explaining all of this would be helpful as well... Thanks.
I have created a react app in which there is a component which contains a table and that table consist of 25-30 columns which is not possible to show completely in a normal size screen, if i use the print button of the browser (ctrl + P)<-- shortcut key then it will not print the entire table.So that's why it is required to add button to create a pdf file of the entire table. What are the best ways to generate the pdf of for the applications which also covers large volume of data flowing to x-axis of the screen
React hooks is preferable because the application is full functional and ready to deploy
I am working on project where I have to store a file/img/pdf for a particular user instance and retrieve the files when the user logged in.
So the theme is, whenever user uploads a file it should be populated in his screen like profile pictures, invoice PDF's etc.,
Moreover, I just want to perform a carousel slideshow of uploaded images by user.
I came through several baked in modules such as ng-file-upload in angular and I was successful in uploading files too but how can I retrieve the particular file from the server and display them to user?
What is the best practice to achieve this?
Thanks in advance!
I'm looking for a way to create a search box in wordpress, where visitors can search a number from the database. Is this possible? I have several package numbers in my database. I want to give my visitors the ability to search for their package number and request the information that comes with the number.
What you want to do can be done.
I suggest a different approach than using wp-exec. (I just looked at wp-exec website, and that plugin was created for WordPress 1.5, which means it hasn't been updated in about 5 years).
The content you want to display exists entirely outside of WordPress. I suggest you use a custom page template - see
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
In this case you would not use WordPress posts or pages or custom post types. On the custom page template you would write (or have written if you don't have the knowhow to do it yourself) PHP code to extract the info from the database and display it on a page.
For pages like that you would be using WordPress only as a container within which to display the results - they custom page would appear in the site Nav, The page of results would use the site's theme to display so it looks like the rest of the site.
But the code to display from the database would not use the WordPress loop. It would be PHP / MySQL data retrieval and display code.
I really doubt you will find a plugin that lets you display results from an external database, formatted the way you want them to appear. The reason is every external database is different, has different tables and table structures. And no two sites will want the external data visually displayed in the same way. So there is little generalization to encapsulate in a plugin as everyone wants it different.
I've created pages on some sites along the lines of what you want to do thus I know it can be done. But it requires writing custom code.
I'm trying to implement PageRank algorithm on a set of web pages, for that I need a sample dataset of web pages, and the web graph corresponding to them, this web graph represents the links between the pages that the data set contains.
I need the web graph so I can get the transition matrix and do the calculation needed. Example:
URL1 -> URL2
URL3390 -> URL5
URLxxxx is an id, somehow mapped to the corresponding web page
My question is: how/where can I get this resource (I've tried many links on the internet but nothing really helps), I would also like it to be not of a very large size, (internet connection limitation), if I can't have this as it is, could sou give me some advice on what I should do?
Update: for people who may consider this off topic, and they may be right, networks like Software Recommendation or on Computer Science, don't even have corresponding tags, and doesn't really fit the kind of this question, I appreciate your help.
May be Site Visualizer is the tool you're looking for. The app has the feature to generate visual sitemap.
Download and install the app (Standard or Pro version), click Create new project toolbutton, type the URL of the website you need to crawl, and then click Start button.
After the crawling is finished, click Draw button on the Visual Sitemap tab. Graph of the website will be drawn as a set of pages (rectangles) and links (lines with arrows). Click on a box to select the certain page and highlight its outbound links:
Dataset of all links of the website you can get by using All Links report (on the Reports tab). 'From URL' and 'To URL' columns are what you need.
Besides of that, you can represent a dataset of pages or links of the crawled website by using your particular SQL query. For instance, go to the Database tab, type the following query and click Execute toolbutton:
SELECT * FROM links WHERE link_type='A'
The resultset will contain only A-tag links, excluding images, CSS files, JS, etc.
The program has full-featured 30-days trial period, so you can carry out your tasks for free.
you might try searching for datasets used in supplementary information for PageRank papers. Here's an example:
this paper: http://langvillea.people.cofc.edu/ReorderingPageRank.pdf
uses this dataset:
http://www.cs.cornell.edu/Courses/cs685/2002fa/data/gr0.California
which supposedly contains 9,664 nodes and 16,773 links. The links are at the end of the file and appear to be in a connection format similar to what you're looking for.
from this page (which also has other datasets):
http://www.cs.cornell.edu/Courses/cs685/2002fa/
here's a few other pages that aggregate network datasets:
http://snap.stanford.edu/data/, see particularly
http://snap.stanford.edu/data/web-Stanford.html
http://www.datawrangling.com/some-datasets-available-on-the-web
http://networkdata.ics.uci.edu/resources.php
good luck!