read Excel w/ C++ (microsoft vis studio)
See tutorial: https://www.youtube.com/watch?v=EjJY7yA5SWw
Here's my code:
*ifstream FILE("USE THIS FILE.xls");
//
string date; string companyTicker; string companyName; int year1; int til; int month; int year2; int asdf;
while(FILE>> date >> companyTicker >> companyName >> year1 >> til >> month >> year2 >> asdf)
{
std::cout << date << ", " << companyTicker <<
", " << companyName << ", " << year1 << ", " << til << ", " << month << ", " << year2 << ", " << asdf << endl;
}*
I've also gone on another tutorial where istream::getline is asked, of course this will cause an error "no instance of overloaded function". nothing online has been able to diagnose that issue.
Thanks all!